Skip to content

Commit

Permalink
Fix config name
Browse files Browse the repository at this point in the history
  • Loading branch information
thevops committed Nov 12, 2024
1 parent 49c6915 commit 61fbdef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async function main() {
Number(duration_parts[2]);
// Skip videos shorter than X seconds
if (seconds < Config.skip_videos_shorter_than) {
logger.info(`Skipping video shorter than ${Config.skip_videos_short_than} seconds: ${link}`);
logger.info(`Skipping video shorter than ${Config.skip_videos_shorter_than} seconds: ${link}`);
return;
}

Expand Down

0 comments on commit 61fbdef

Please sign in to comment.