diff options
author | Ajay <[email protected]> | 2023-10-01 13:56:34 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2023-10-01 13:56:34 -0400 |
commit | ae685baeef026658078fc010d8d014d3755a1b92 (patch) | |
tree | 8537482a06acbe94c1bbc292dbfd8e0c87d46b6b | |
parent | 7566b71ccd9da43045cc45d8fcb30b2d0f68439d (diff) | |
download | SponsorBlock-ae685baeef026658078fc010d8d014d3755a1b92.tar.gz SponsorBlock-ae685baeef026658078fc010d8d014d3755a1b92.zip |
Fix tip ui broken for submissions
-rw-r--r-- | src/content.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts index 6de4a9e5..0d5cc33a 100644 --- a/src/content.ts +++ b/src/content.ts @@ -2317,7 +2317,7 @@ async function sendSubmitMessage() { playerButtons.submit.button.style.animation = "unset"; playerButtons.submit.image.src = chrome.extension.getURL("icons/PlayerUploadFailedIconSponsorBlocker.svg"); - if (response.status === 403 && response.responseText.startsWith("Submission rejected due to a warning from a moderator.")) { + if (response.status === 403 && response.responseText.startsWith("Submission rejected due to a tip from a moderator.")) { openWarningDialog(skipNoticeContentContainer); } else { alert(getErrorMessage(response.status, response.responseText)); |