From 61e49bfe3cf4b4c1eae26c6f394e2a7e7b61d84f Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 21 Jan 2023 12:56:11 +0200 Subject: [PATCH] troubleshooting --- files/assets/js/chat.js | 1 + 1 file changed, 1 insertion(+) diff --git a/files/assets/js/chat.js b/files/assets/js/chat.js index 69d5afa3c..aaace50a0 100644 --- a/files/assets/js/chat.js +++ b/files/assets/js/chat.js @@ -148,6 +148,7 @@ socket.on('catchup', function(json) { for (const message of json) { const existing = document.getElementById(json['id']) if (existing) break + console.log(existing) handle_message(message) } })