From dd832175a80ee08768ea8c477f031c5a239984b4 Mon Sep 17 00:00:00 2001 From: nuttylmao Date: Thu, 8 May 2025 05:01:07 +1000 Subject: [PATCH] Fixed bug where donation message appears blank --- multistream-alerts/script.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/multistream-alerts/script.js b/multistream-alerts/script.js index 4ee2430..d469cc6 100644 --- a/multistream-alerts/script.js +++ b/multistream-alerts/script.js @@ -1317,7 +1317,8 @@ function UpdateAlertBox(platform, avatarURL, headerText, descriptionText, attrib theContentThatShowsFirstInsteadOfSecond.style.opacity = 1; theContentThatShowsLastInsteadOfFirst.style.opacity = 0; - theContentThatShowsLastInsteadOfFirst.style.display = 'none'; + //theContentThatShowsLastInsteadOfFirst.style.display = 'none'; + theContentThatShowsLastInsteadOfFirst.style.visibility = 'hidden'; widgetLocked = false; if (alertQueue.length > 0) { console.debug("Pulling next alert from the queue");