mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-24 15:08:42 +00:00
Fix call notification where subtitle was the full sip adress (and only the display name was displayed, which is already display in title)
This commit is contained in:
parent
03c9a68068
commit
fde30a3ee9
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ Rectangle {
|
||||||
: (entry.isOneToOne == undefined || entry.isOneToOne) && (entry.haveEncryption == undefined || !entry.haveEncryption)
|
: (entry.isOneToOne == undefined || entry.isOneToOne) && (entry.haveEncryption == undefined || !entry.haveEncryption)
|
||||||
? item.organizer
|
? item.organizer
|
||||||
? item.organizer
|
? item.organizer
|
||||||
: entry.sipAddress || entry.fullPeerAddress || entry.peerAddress || ''
|
: entry.sipAddress || entry.peerAddress || entry.fullPeerAddress || ''
|
||||||
: entry.participants
|
: entry.participants
|
||||||
? entry.participants.addressesToString
|
? entry.participants.addressesToString
|
||||||
: ''
|
: ''
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue