From 842160864294419e88f2996080f0bf44af666b16 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sun, 9 Jul 2023 07:13:41 +0800 Subject: [PATCH] fix downloading --- app/modules/qbittorrent/qbittorrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/qbittorrent/qbittorrent.py b/app/modules/qbittorrent/qbittorrent.py index 3fe3fba0..5d8300da 100644 --- a/app/modules/qbittorrent/qbittorrent.py +++ b/app/modules/qbittorrent/qbittorrent.py @@ -95,7 +95,7 @@ class Qbittorrent(metaclass=Singleton): if not self.qbc: return None torrents, error = self.get_torrents(ids=ids, - status=["downloading", 'paused', 'stalled_downloading'], + status=["downloading"], tags=tags) return None if error else torrents or []