From d86646076686674452af551198da4e4eeae33ab5 Mon Sep 17 00:00:00 2001 From: Benjamin Harder Date: Mon, 13 May 2024 20:40:27 +0200 Subject: [PATCH] bugfix --- src/jobs/remove_slow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jobs/remove_slow.py b/src/jobs/remove_slow.py index cbd7e2e..c096f25 100644 --- a/src/jobs/remove_slow.py +++ b/src/jobs/remove_slow.py @@ -28,7 +28,7 @@ async def remove_slow(settingsDict, BASE_URL, API_KEY, NAME, deleted_downloads, if queueItem['protocol'] == 'usenet': # No need to check for speed for usenet, since there users pay for speed continue if queueItem['sizeleft'] == 0: # Skip items that are finished downloading but are still marked as downloading. May be the case when files are moving - logger.debug('remove_slow/skipping completed item marked as downloading (most likely moving): %s', queueItem['title']) + logger.info('>>> Detected %s download that has completed downloading - skipping from %s (likely moving): %s',failType, failType, queueItem['title']) continue # determine if the downloaded bit on average between this and the last iteration is greater than the min threshold downloadedSize, previousSize, increment, speed = await getDownloadedSize(settingsDict, queueItem, download_sizes_tracker, NAME)