summary refs log tree commit diff
path: root/resources/qml/delegates
diff options
context:
space:
mode:
authortrilene <trilene@runbox.com>2020-07-24 13:30:12 -0400
committertrilene <trilene@runbox.com>2020-07-24 13:30:12 -0400
commitaec24efbe2a41c17104ea98ad9e35463b16d5d80 (patch)
tree0211f6786c8dce2618a04789e4f62adef639a7fa /resources/qml/delegates
parentCancel sent CallInvite if no response within expiry (diff)
downloadnheko-aec24efbe2a41c17104ea98ad9e35463b16d5d80.tar.xz
Specify call type on timeline
Diffstat (limited to 'resources/qml/delegates')
-rw-r--r--resources/qml/delegates/MessageDelegate.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml
index 52e628be..ed18b2e5 100644
--- a/resources/qml/delegates/MessageDelegate.qml
+++ b/resources/qml/delegates/MessageDelegate.qml
@@ -93,7 +93,7 @@ Item {
 		DelegateChoice {
 			roleValue: MtxEvent.CallInvite
 			NoticeMessage {
-				text: qsTr("%1 placed a voice call.").arg(model.data.userName)
+				text: qsTr("%1 placed a %2 call.").arg(model.data.userName).arg(model.data.callType)
 			}
 		}
 		DelegateChoice {