From 52f5a0f4fd8947865a9c8a7ac7023ebcdcefde2e Mon Sep 17 00:00:00 2001 From: Patryk Osmaczko Date: Fri, 10 Jun 2022 12:34:46 +0200 Subject: [PATCH] fix(@desktop/chat): show compressed pubkey in members list fixes: #5950 --- ui/app/AppLayouts/Chat/panels/UserListPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/panels/UserListPanel.qml b/ui/app/AppLayouts/Chat/panels/UserListPanel.qml index a9a3ff70f5..360125c34f 100644 --- a/ui/app/AppLayouts/Chat/panels/UserListPanel.qml +++ b/ui/app/AppLayouts/Chat/panels/UserListPanel.qml @@ -64,7 +64,7 @@ Item { anchors.rightMargin: 8 nickName: model.localNickname userName: model.displayName - pubKey: model.pubKey + pubKey: Utils.getCompressedPk(model.pubKey) isContact: model.isContact isVerified: model.isVerified isUntrustworthy: model.isUntrustworthy