From 9f67d4f95bd2487f424c889cdd1cd18d5bd85a33 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 25 May 2025 22:25:55 +0200 Subject: [PATCH] Remove unnecessary comments in main.js --- main.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.js b/main.js index 4c5a289..a9f6a80 100644 --- a/main.js +++ b/main.js @@ -683,7 +683,6 @@ async function main() { const now = Date.now(); folders = folders.map(folderObj => { - // only if we’re monitoring and have a birthday timestamp if (folderObj.firstCandidateBirthday != null) { const elapsedMin = (now - folderObj.firstCandidateBirthday) / 1000 / 60; if (elapsedMin >= minutesThreshold) { @@ -735,7 +734,6 @@ async function main() { stopMonitoringWatcher(f.path); return { ...f, needsRelocation: true, monitoring: false }; } - // Keine Änderung an needsRelocation return f; }));