Stop Sonarr/Radarr from nuking qBittorrent torrents after import

Sonarr was silently removing torrents from qBittorrent once imports
completed, killing seeding. Set removeCompletedDownloads to false for
both clients so torrents stick around and keep seeding post-import.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-17 21:23:28 +01:00
parent 7234857b4a
commit d80ccf4e6d

View file

@ -121,7 +121,7 @@ let
"enable": true,
"protocol": "torrent",
"priority": 1,
"removeCompletedDownloads": true,
"removeCompletedDownloads": false,
"removeFailedDownloads": true,
"name": "qBittorrent",
"implementation": "QBittorrent",
@ -162,7 +162,7 @@ let
"enable": true,
"protocol": "torrent",
"priority": 1,
"removeCompletedDownloads": true,
"removeCompletedDownloads": false,
"removeFailedDownloads": true,
"name": "qBittorrent",
"implementation": "QBittorrent",