fix(@desktop/chat): nickname disapear when closing the modal

fixes #2674
This commit is contained in:
Anthony Laibe 2021-07-13 13:56:52 +02:00 committed by Iuri Matias
parent 66a0611d91
commit 769ac7ee86
1 changed files with 5 additions and 3 deletions

View File

@ -34,9 +34,11 @@ StatusPopupMenu {
if (chatItem.chatType === Constants.chatTypeOneToOne) {
const userProfileImage = appMain.getProfileImage(chatItem.id)
return openProfilePopup(
chatItem.name,
chatItem.id,
userProfileImage || chatItem.identicon
chatItem.name,
chatItem.id,
userProfileImage || chatItem.identicon,
"",
chatItem.name
)
}
if (chatItem.chatType === Constants.chatTypePrivateGroupChat) {