From 707db9dceaf1b15938da09da2bafbe0dd1082315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Cie=C5=9Blak?= Date: Tue, 19 Nov 2024 11:44:28 +0100 Subject: [PATCH] SendContactRequestModal: fetching contact info fixed Closes: #16774 --- ui/imports/shared/popups/SendContactRequestModal.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/imports/shared/popups/SendContactRequestModal.qml b/ui/imports/shared/popups/SendContactRequestModal.qml index 302ee0eca1..41c5f12014 100644 --- a/ui/imports/shared/popups/SendContactRequestModal.qml +++ b/ui/imports/shared/popups/SendContactRequestModal.qml @@ -29,7 +29,7 @@ CommonContactDialog { messageInput.input.edit.forceActiveFocus() // (request) update from mailserver - if (d.userDisplayName === "") { + if (root.contactDetails.displayName === "") { root.rootStore.contactStore.requestContactInfo(root.publicKey) root.loadingContactDetails = true }