From d80ccf4e6d3bd1efcc8ff4bae19513f5208e2ff5 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Fri, 17 Apr 2026 21:23:28 +0100 Subject: [PATCH] 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 --- services/arr-interconnect.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/arr-interconnect.nix b/services/arr-interconnect.nix index 3195126..7f2f688 100644 --- a/services/arr-interconnect.nix +++ b/services/arr-interconnect.nix @@ -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",