We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8ddcdc commit b05d696Copy full SHA for b05d696
src/utils/segmentData.ts
@@ -49,7 +49,7 @@ async function fetchSegmentsForVideo(videoID: VideoID): Promise<SegmentResponse>
49
const hashParams = getHashParams();
50
if (hashParams.requiredSegment) extraRequestData.requiredSegment = hashParams.requiredSegment;
51
52
- const hashPrefix = (await getHash(videoID, 1)).slice(0, 4) as VideoID & HashedValue;
+ const hashPrefix = (await getHash(videoID, 1)).slice(0, 5) as VideoID & HashedValue;
53
const hasDownvotedSegments = !!Config.local.downvotedSegments[hashPrefix];
54
const response = await asyncRequestToServer('GET', "/api/skipSegments/" + hashPrefix, {
55
categories: CompileConfig.categoryList,
0 commit comments