Skip to content

Commit 59c7451

Browse files
authored
Merge branch 'dev' into fix-qbit-5.2-token-name
2 parents 68dada5 + 6283028 commit 59c7451

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Looking to **upgrade from V1 to V2**? Look [here](#upgrading-from-v1-to-v2)
4040
- [REMOVE_STALLED](#remove_stalled)
4141
- [REMOVE_UNMONITORED](#remove_unmonitored)
4242
- [REMOVE_DONE_SEEDING](#remove_done_seeding)
43-
- [SEARCH_CUTOFF_UNMET](#search_unmet_cutoff)
43+
- [SEARCH_UNMET_CUTOFF](#search_unmet_cutoff)
4444
- [SEARCH_MISSING](#search_missing)
4545
- [DETECT_DELETIONS](#detect_deletions)
4646
- [Instances](#arr-instances)
@@ -70,7 +70,7 @@ Feature overview:
7070
- Removing downloads that are stalled (remove_stalled)
7171
- Removing downloads belonging to movies/series/albums etc. that have been marked as "unmonitored" (remove_unmonitored)
7272
- Removing completed downloads from your download client that match certain criteria (remove_done_seeding)
73-
- Periodically searching for better content on movies/series/albums etc. where cutoff has not been reached yet (search_cutoff_unmet)
73+
- Periodically searching for better content on movies/series/albums etc. where cutoff has not been reached yet (search_unmet_cutoff)
7474
- Periodically searching for missing content that has not yet been found (search_missing)
7575

7676

@@ -219,7 +219,7 @@ services:
219219
REMOVE_SLOW: True
220220
REMOVE_STALLED: True
221221
REMOVE_UNMONITORED: True
222-
SEARCH_BETTER: True
222+
SEARCH_UNMET_CUTOFF: True
223223
SEARCH_MISSING: True
224224
DETECT_DELETIONS: True
225225

@@ -352,7 +352,7 @@ Below are **examples** how keys have changed.
352352
| `PERMITTED_ATTEMPTS` | `max_strikes` |
353353
| `NO_STALLED_REMOVAL_QBIT_TAG` | `protected_tag` |
354354
| `REMOVE_FAILED` | `remove_failed_downloads` |
355-
| `RUN_PERIODIC_RESCANS` | `search_better`, `search_missing` (both under `jobs`) |
355+
| `RUN_PERIODIC_RESCANS` | `search_unmet_cutoff`, `search_missing` (both under `jobs`) |
356356
| `MIN_DAYS_BEFORE_RESCAN` | `min_days_between_searches` |
357357
| `MIN_DOWNLOAD_SPEED` | `min_speed` |
358358
| `FAILED_IMPORT_MESSAGE_PATTERNS`| `message_patterns` inside `remove_failed_imports`. Note that this now uses wildcards (*). Without wildcard(s), exact match is assumed |

src/settings/_download_clients_qbit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ async def create_required_tags(self):
187187

188188
async def set_unwanted_folder(self):
189189
"""Set the 'unwanted folder' setting in qBittorrent if needed."""
190-
if self.settings.jobs.remove_bad_files:
190+
if self.settings.jobs.remove_bad_files.enabled:
191191
logger.debug(
192192
"_download_clients_qBit.py/set_unwanted_folder: Checking preferences and setting use_unwanted_folder if not already set",
193193
)

0 commit comments

Comments
 (0)