From 50d6e77b3118e9e08eff73f23f856d6c2f581f0a Mon Sep 17 00:00:00 2001 From: vyneer Date: Sat, 7 Sep 2024 22:02:13 +0300 Subject: [PATCH] fix: updateMessages func not running when after hitting a system message --- assets/chat/js/window.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/chat/js/window.js b/assets/chat/js/window.js index 5f99e8c4..9c57a436 100644 --- a/assets/chat/js/window.js +++ b/assets/chat/js/window.js @@ -128,7 +128,7 @@ class ChatWindow extends EventEmitter { } if (message.user?.isSystem()) { - return; + continue; } const username = message.user?.username;