Skip to content

Commit

Permalink
add sub warning to vod download
Browse files Browse the repository at this point in the history
related to #468
  • Loading branch information
MrBrax committed Oct 10, 2023
1 parent 3077597 commit 5bac037
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions server/src/Core/Providers/Twitch/TwitchVOD.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2102,6 +2102,14 @@ export class TwitchVOD extends BaseVOD {
logOutput.trim()
);
}

if (logOutput.match(/403 Client Error/)) {
log(
LOGLEVEL.ERROR,
"vod.downloadVideo",
"Twitch returned 403, is the VOD deleted or subscriber only?"
);
}
}
);

Expand Down

0 comments on commit 5bac037

Please sign in to comment.