This commit is contained in:
Sam Machin
2025-07-23 15:26:59 +01:00
committed by Dave Horton
parent 10a2b15279
commit f03ec420bf

View File

@@ -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};`);
};