Skip to content

Commit

Permalink
Add condition for error message
Browse files Browse the repository at this point in the history
or queueItem["errorMessage"] == "qBittorrent is reporting missing files"
  • Loading branch information
gitdeath authored Dec 16, 2024
1 parent 9756e69 commit 5555ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/remove_missing_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def remove_missing_files(
queueItem["errorMessage"]
== "DownloadClientQbittorrentTorrentStateMissingFiles"
or queueItem["errorMessage"] == "The download is missing files"
or queueItem['errorMessage'] == "qBittorrent is reporting missing files"
or queueItem["errorMessage"] == "qBittorrent is reporting missing files"
)
):
affectedItems.append(queueItem)
Expand Down

0 comments on commit 5555ec5

Please sign in to comment.