From e9d81b174dd6520053984ed16ae2f967bae9c102 Mon Sep 17 00:00:00 2001 From: Maxim Myalin Date: Sun, 31 Dec 2023 01:59:05 +0300 Subject: [PATCH] Update arss.py In _process_single_torrent function we expect tuple of 3 from leave_alone function Thus cause errors --- qBitrr/arss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qBitrr/arss.py b/qBitrr/arss.py index 300310d7..09d5e323 100755 --- a/qBitrr/arss.py +++ b/qBitrr/arss.py @@ -3206,7 +3206,7 @@ def _should_leave_alone( return_value = True remove_torrent = False if torrent.super_seeding or torrent.state_enum == TorrentStates.FORCED_UPLOAD: - return return_value, -1 # Do not touch super seeding torrents. + return return_value, -1, remove_torrent # Do not touch super seeding torrents. data_settings, data_torrent = self._get_torrent_limit_meta(torrent) self.logger.trace("Config Settings for torrent [%s]: %r", torrent.name, data_settings) self.logger.trace("Torrent Settings for torrent [%s]: %r", torrent.name, data_torrent)