diff --git a/eventsub/websockets/web/chat/index.html b/eventsub/websockets/web/chat/index.html index 16b4787..517ec5c 100644 --- a/eventsub/websockets/web/chat/index.html +++ b/eventsub/websockets/web/chat/index.html @@ -97,6 +97,19 @@

Click on a window to switch which is visible/on top. (Barrys Crap Tabs). Left is a brain dump right is a easy to read.

+

Supported Features

+ + + +

Add another broadcaster channel to your socket to listen to

@@ -307,9 +320,9 @@ typ.textContent = 'Chat'; chat.append(typ); - let sp = document.createElement('span'); - sp.textContent = `: ${broadcaster_user_name} - ${chatter_user_name}:`; - chat.append(sp); + let sourcec = document.createElement('span'); + sourcec.textContent = `: ${broadcaster_user_name} - ${chatter_user_name}:`; + chat.append(sourcec); buildFromFragments(chat, fragments); @@ -335,6 +348,7 @@ if (source_message_id) { chat.classList.add('thatchat'); chat.setAttribute('data-source-message-id', source_message_id); + sourcec.textContent = `: ${source_broadcaster_user_name} - ${chatter_user_name}:`; } else { chat.classList.add('thischat'); }