Add files via upload

This commit is contained in:
Rodrigo Emanuel
2025-05-11 18:02:43 -03:00
committed by GitHub
parent fe888defa9
commit 7ae47a577e
8 changed files with 34 additions and 10 deletions

View File

@@ -119,7 +119,7 @@ async function youTubeChatMessage(data) {
async function youTubeUserBanned(data) {
chatContainer.querySelectorAll(`[data-user="${data.bannedUser.id}"]`).forEach(element => {
chatContainer.querySelectorAll(`[data-user="${data.bannedUser.id}"]:not(.event)`).forEach(element => {
element.remove();
});
}