From 2a5604a1663666bf923601c598c11c09ce835693 Mon Sep 17 00:00:00 2001 From: Kalila L Date: Sun, 20 Sep 2020 00:44:04 -0400 Subject: [PATCH] Fix chat window toggling for all users on domain. --- scripts/communityScripts/notificationCore/notificationCore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/communityScripts/notificationCore/notificationCore.js b/scripts/communityScripts/notificationCore/notificationCore.js index 7920a575ec..51e1eadde1 100644 --- a/scripts/communityScripts/notificationCore/notificationCore.js +++ b/scripts/communityScripts/notificationCore/notificationCore.js @@ -183,7 +183,7 @@ Controller.mousePressEvent.connect(function (event) { for (var i = 0; i < notificationList.length; i++) { if (overlay === notificationList[i].id) { Overlays.deleteOverlay(notificationList[i].id) - Messages.sendMessage(MAIN_CHAT_APP_CHANNEL, JSON.stringify({ + Messages.sendLocalMessage(MAIN_CHAT_APP_CHANNEL, JSON.stringify({ type: "ShowChatWindow", })); }