aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAjay <[email protected]>2024-06-22 16:27:18 +0530
committerAjay <[email protected]>2024-06-22 16:27:18 +0530
commitfae7d921a7f74da5df4420ba169ecc16b79aeb82 (patch)
tree1dc44c52f80cc12cac0e9f54a61a31426f929f54 /src
parent60a2eff40a6b67bf56e319460b58ddc25b90e80f (diff)
parent5e179cf9ff3177f760cfbbfd87af17248f0902db (diff)
downloadSponsorBlock-fae7d921a7f74da5df4420ba169ecc16b79aeb82.tar.gz
SponsorBlock-fae7d921a7f74da5df4420ba169ecc16b79aeb82.zip
Merge branch 'master' of https://github.com/ajayyy/SponsorBlock into mv3mv3
Diffstat (limited to 'src')
-rw-r--r--src/content.ts13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/content.ts b/src/content.ts
index d22628a1..fa06b25f 100644
--- a/src/content.ts
+++ b/src/content.ts
@@ -264,7 +264,9 @@ function messageListener(request: Message, sender: unknown, sendResponse: (respo
// it will assume the page is not a video page and stop the refresh animation
sendResponse({ hasVideo: getVideoID() != null });
// fetch segments
- sponsorsLookup(false);
+ if (getVideoID()) {
+ sponsorsLookup(false);
+ }
break;
case "unskip":
@@ -1115,7 +1117,12 @@ async function sponsorsLookup(keepOldSubmissions = true) {
const hashParams = getHashParams();
if (hashParams.requiredSegment) extraRequestData.requiredSegment = hashParams.requiredSegment;
- const hashPrefix = (await getHash(getVideoID(), 1)).slice(0, 4) as VideoID & HashedValue;
+ const videoID = getVideoID()
+ if (!videoID) {
+ console.error("[SponsorBlock] Attempted to fetch segments with a null/undefined videoID.");
+ return;
+ }
+ const hashPrefix = (await getHash(videoID, 1)).slice(0, 4) as VideoID & HashedValue;
const response = await asyncRequestToServer('GET', "/api/skipSegments/" + hashPrefix, {
categories,
actionTypes: getEnabledActionTypes(),
@@ -2733,4 +2740,4 @@ function checkForMiniplayerPlaying() {
}
}
}
-} \ No newline at end of file
+}