diff --git a/config/config.conf-Example b/config/config.conf-Example index 1ad6cad..7b7fca8 100644 --- a/config/config.conf-Example +++ b/config/config.conf-Example @@ -5,13 +5,12 @@ TEST_RUN = True [features] REMOVE_TIMER = 10 REMOVE_FAILED = True -REMOVE_STALLED = True REMOVE_METADATA_MISSING = True +REMOVE_MISSING_FILES = True REMOVE_ORPHANS = True -REMOVE_UNMONITORED = True -REMOVE_MISSING_FILES = True REMOVE_SLOW = True -REMOVE_MISSING_FILES = True +REMOVE_STALLED = True +REMOVE_UNMONITORED = True MIN_DOWNLOAD_SPEED = 100 PERMITTED_ATTEMPTS = 3 NO_STALLED_REMOVAL_QBIT_TAG = Don't Kill diff --git a/main.py b/main.py index 64e58c5..286f7c6 100644 --- a/main.py +++ b/main.py @@ -156,9 +156,9 @@ async def main(): if not error_occured: qbit_version = await rest_get(settings_dict['QBITTORRENT_URL']+'/app/version',cookies=settings_dict['QBIT_COOKIE']) qbit_version = qbit_version[1:] # version without _v - if version.parse(qbit_version) < version.parse('4.6.3'): + if version.parse(qbit_version) < version.parse('4.3.0'): error_occured = True - logger.error('-- | %s *** Error: %s ***', 'qBittorrent', 'Please update qBittorrent to at least version 4.6.0. Current version: ' + qbit_version) + logger.error('-- | %s *** Error: %s ***', 'qBittorrent', 'Please update qBittorrent to at least version 4.3.0. Current version: ' + qbit_version) if not error_occured: logger.info('OK | %s', 'qBittorrent')