From c97f26465c622b9a3f4dca9c3c0ec3ecaab59229 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Tue, 3 Sep 2019 23:28:35 -0700 Subject: [PATCH] set correct name on conversation --- js/modules/loki_public_chat_api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/modules/loki_public_chat_api.js b/js/modules/loki_public_chat_api.js index 9706bc78a..b7233ca39 100644 --- a/js/modules/loki_public_chat_api.js +++ b/js/modules/loki_public_chat_api.js @@ -415,7 +415,7 @@ class LokiPublicChannelAPI { // this.conversation.setGroupNameAndAvatar(note.value.name, // note.value.avatar); if (note.value && note.value.name) { - this.conversation.setProfileName(note.value.name); + this.conversation.setGroupName(note.value.name); } if (note.value && note.value.avatar) { this.conversation.setProfileAvatar(note.value.avatar);