From 32a8978ff1fba9175cd3db67b8fbde21ac320b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Tue, 29 Jun 2021 10:43:04 -0400 Subject: [PATCH] chatview: set displayName for files Change-Id: I7fa866deeb355790ee0dc688a3167728ccc43be9 --- src/webchathelpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webchathelpers.cpp b/src/webchathelpers.cpp index 66e0732f3..d265461a8 100644 --- a/src/webchathelpers.cpp +++ b/src/webchathelpers.cpp @@ -71,6 +71,7 @@ buildInteractionJson(lrc::api::ConversationModel& conversationModel, interactionObject.insert("totalSize", QJsonValue(qint64(info.totalSize))); interactionObject.insert("progress", QJsonValue(qint64(info.progress))); } + interactionObject.insert("displayName", QJsonValue(inter.commit["displayName"])); break; } case lrc::api::interaction::Type::INVALID: -- GitLab