fix(ProfileDialogView): Use compressed chat key in "Copy Link To Profile"

Fixes #7988
This commit is contained in:
Lukáš Tinkl 2022-10-21 11:00:51 +02:00 committed by Lukáš Tinkl
parent f722dc0761
commit 62d4aca0ca
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ Pane {
else
user = contactDetails.name
if (!user)
user = root.publicKey
user = Utils.getCompressedPk(root.publicKey)
return Constants.userLinkPrefix + user
}