From 81ef48e558de6f010b68c5ab3de654504989d086 Mon Sep 17 00:00:00 2001
From: KyrunaKJ <144215395+KyrunaKJ@users.noreply.github.com>
Date: Sun, 24 Nov 2024 11:29:09 -0500
Subject: [PATCH] Update chat.js sub/donate links
The a tags follow the same template as the link to the profile in the 'banned' case now.
---
assets/chat/js/chat.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/assets/chat/js/chat.js b/assets/chat/js/chat.js
index a5101269..d1f3ff12 100644
--- a/assets/chat/js/chat.js
+++ b/assets/chat/js/chat.js
@@ -1290,7 +1290,7 @@ class Chat {
case 'muted': {
this.mutedtimer.setTimer(data.muteTimeLeft);
this.mutedtimer.startTimer();
- const messageText = `You are temporarily muted! You can chat again ${this.mutedtimer.getReadableDuration()}. Subscribe, or donate, to remove the mute immediately.`;
+ const messageText = `You are temporarily muted! You can chat again ${this.mutedtimer.getReadableDuration()}. Subscribe, or donate, to remove the mute immediately.`;
message = new ChatMessage(messageText, null, MessageTypes.ERROR, true);
break;