Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Apr 5, 2023
2 parents 3826c76 + f5f6664 commit f97cc55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/float.ts
Expand Up @@ -114,7 +114,8 @@ process.on("SIGTERM", process.exit);
const waitLoop = async () => {
await fetchNewVideos(subscriptions, downloader);
setTimeout(waitLoop, 5 * 60 * 1000);
console.log("Checking for new videos in 5 minutes...");
const now = new Date(Date.now());
console.log("[" + now.toLocaleTimeString() + "]" + " Checking for new videos in 5 minutes...");
};
waitLoop();
} else downloader.stop();
Expand Down

0 comments on commit f97cc55

Please sign in to comment.