aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAjay <[email protected]>2023-10-01 13:56:34 -0400
committerAjay <[email protected]>2023-10-01 13:56:34 -0400
commitae685baeef026658078fc010d8d014d3755a1b92 (patch)
tree8537482a06acbe94c1bbc292dbfd8e0c87d46b6b
parent7566b71ccd9da43045cc45d8fcb30b2d0f68439d (diff)
downloadSponsorBlock-ae685baeef026658078fc010d8d014d3755a1b92.tar.gz
SponsorBlock-ae685baeef026658078fc010d8d014d3755a1b92.zip
Fix tip ui broken for submissions
-rw-r--r--src/content.ts2
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));