From 47ea6024229fa1cafc1f98a18575037e6e37ea32 Mon Sep 17 00:00:00 2001 From: Arathen Date: Wed, 13 Feb 2019 00:52:36 +1100 Subject: [PATCH] FIX: Change qBt resume_all to a POST operation. --- lib/qbittorrent/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/qbittorrent/client.py b/lib/qbittorrent/client.py index 6809144d..86ba54bf 100644 --- a/lib/qbittorrent/client.py +++ b/lib/qbittorrent/client.py @@ -391,7 +391,7 @@ class Client(object): """ Resume all torrents. """ - return self._get('api/v2/torrents/resume', data={'hashes': 'all'}) + return self._post('api/v2/torrents/resume', data={'hashes': 'all'}) def resume_multiple(self, infohash_list): """