From f03ec420bf59d372b7f6e31142c6151f6b182515 Mon Sep 17 00:00:00 2001 From: Sam Machin Date: Wed, 23 Jul 2025 15:26:59 +0100 Subject: [PATCH] lint --- lib/utils/cron-jobs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils/cron-jobs.js b/lib/utils/cron-jobs.js index 4eac2212..be036f46 100644 --- a/lib/utils/cron-jobs.js +++ b/lib/utils/cron-jobs.js @@ -49,9 +49,9 @@ const clearChannels = () => { }; const clearFiles = () => { - // Remove temp audiofiles that were not auto deleted older 300 min (or CLEANUP_INTERVAL if set) from TMP_FOLDER - let maxAge = JAMBONZ_CLEANUP_INTERVAL_MINS || 300 - execSync(`/usr/local/bin/cleanup-temp-audiofiles.sh ${maxAge} ${TMP_FOLDER};`); + // Remove temp audiofiles that were not auto deleted older 300 min (or CLEANUP_INTERVAL if set) from TMP_FOLDER + let maxAge = JAMBONZ_CLEANUP_INTERVAL_MINS || 300; + execSync(`/usr/local/bin/cleanup-temp-audiofiles.sh ${maxAge} ${TMP_FOLDER};`); };