mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-09-09 03:23:08 +02:00
sip: fix outgoing call messages
The author was empty instead of current uri Change-Id: I4022c5e8bbbe4bd57c1a3fd7bc33ba8be6861bde
This commit is contained in:
parent
14ae000686
commit
1a9aa18680
1 changed files with 2 additions and 1 deletions
|
@ -3567,7 +3567,8 @@ ConversationModelPimpl::addOrUpdateCallMessage(const QString& callId,
|
|||
if (conv_it->isSwarm())
|
||||
return;
|
||||
auto uid = conv_it->uid;
|
||||
auto uriString = incoming ? storage::prepareUri(from, linked.owner.profileInfo.type) : "";
|
||||
auto uriString = incoming ? storage::prepareUri(from, linked.owner.profileInfo.type)
|
||||
: linked.owner.profileInfo.uri;
|
||||
auto msg = interaction::Info {uriString,
|
||||
{},
|
||||
std::time(nullptr),
|
||||
|
|
Loading…
Add table
Reference in a new issue