From ad7a5997949de2f8a6b06fa5e3af680a647ba9a1 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Thu, 9 Oct 2025 15:03:40 +0200 Subject: [PATCH] use display name instead of address for security example so the magic search does not search this fake address --- Linphone/view/Page/Main/Contact/ContactPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Linphone/view/Page/Main/Contact/ContactPage.qml b/Linphone/view/Page/Main/Contact/ContactPage.qml index 0d4ce28cd..9a09cccf3 100644 --- a/Linphone/view/Page/Main/Contact/ContactPage.qml +++ b/Linphone/view/Page/Main/Contact/ContactPage.qml @@ -178,7 +178,7 @@ FriendGui{ content: RowLayout { spacing: Math.round(50 * DefaultStyle.dp) Avatar { - _address: "sip:a.c@sip.linphone.org" + displayNameVal: "A C" Layout.preferredWidth: Math.round(45 * DefaultStyle.dp) Layout.preferredHeight: Math.round(45 * DefaultStyle.dp) } @@ -189,7 +189,7 @@ FriendGui{ Layout.preferredHeight: Math.round(45 * DefaultStyle.dp) } Avatar { - _address: "sip:a.c@sip.linphone.org" + displayNameVal: "A C" secured: true Layout.preferredWidth: Math.round(45 * DefaultStyle.dp) Layout.preferredHeight: Math.round(45 * DefaultStyle.dp)