Skip to content
Snippets Groups Projects
Commit 217efe60 authored by Page Magnier-Slimani's avatar Page Magnier-Slimani
Browse files

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
parent 00febee4
Branches
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment