1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-04-21 21:52:03 +02:00

calls: fix the display of incoming calls

When called, it shows "Incoming ... call from username" instead of
"incoming ....call from %1". This adress an issue created in the commit
30419 :https://review.jami.net/c/jami-client-qt/+/30419

GitLab: #1929
Change-Id: I4695a9aebf1787eebef148c234cf6b8eaa2d7ac0
This commit is contained in:
pmagnier-slimani 2025-02-28 15:59:16 -05:00
parent 00febee4c7
commit 217efe603b

View file

@ -146,7 +146,7 @@ Rectangle {
text: {
if (!CurrentCall.isOutgoing)
return CurrentCall.isAudioOnly ? JamiStrings.incomingAudioCallFrom.replace("{}", title) : JamiStrings.incomingVideoCallFrom.replace("{}", title);
return CurrentCall.isAudioOnly ? JamiStrings.incomingAudioCallFrom.arg(title) : JamiStrings.incomingVideoCallFrom.arg(title);
else
return title;
}