FIX: Change qBt resume_all to a POST operation.

This commit is contained in:
Arathen 2019-02-13 00:52:36 +11:00 committed by evilhero
parent 96851510a5
commit 47ea602422
1 changed files with 1 additions and 1 deletions

View File

@ -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):
"""