From fde30a3ee96c4e1a2ce9ee557f898a400fb3b650 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Fri, 9 Jun 2023 15:20:22 +0200 Subject: [PATCH] Fix call notification where subtitle was the full sip adress (and only the display name was displayed, which is already display in title) --- linphone-app/ui/modules/Linphone/Contact/Contact.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-app/ui/modules/Linphone/Contact/Contact.qml b/linphone-app/ui/modules/Linphone/Contact/Contact.qml index f9fb40e43..c397f7f9f 100644 --- a/linphone-app/ui/modules/Linphone/Contact/Contact.qml +++ b/linphone-app/ui/modules/Linphone/Contact/Contact.qml @@ -128,7 +128,7 @@ Rectangle { : (entry.isOneToOne == undefined || entry.isOneToOne) && (entry.haveEncryption == undefined || !entry.haveEncryption) ? item.organizer ? item.organizer - : entry.sipAddress || entry.fullPeerAddress || entry.peerAddress || '' + : entry.sipAddress || entry.peerAddress || entry.fullPeerAddress || '' : entry.participants ? entry.participants.addressesToString : ''