From 4824f787d53a6944d7b48eaa93dc1f49a0ecff37 Mon Sep 17 00:00:00 2001 From: unknown <89595418+unknownsrc@users.noreply.github.com> Date: Fri, 24 Mar 2023 17:13:59 +0100 Subject: [PATCH] lowering limit to 1h30m --- utils/auto.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/auto.js b/utils/auto.js index deab7b2..9c4c09d 100644 --- a/utils/auto.js +++ b/utils/auto.js @@ -40,8 +40,8 @@ async function handleDownload(channelId) { continue } - if (video.duration > 6300) { - logger.info({ message: `${video.title} is longer than 1h45m, ${id}` }) + if (video.duration > 5400) { + logger.info({ message: `${video.title} is longer than 1h30m, ${id}` }) continue }