mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Update utorrent.py
Adds high priority mode for recently aired show to utorrent using already existing tickbox under "search options\episode search".
This commit is contained in:
parent
dafff0281e
commit
6c84fed536
@ -63,6 +63,12 @@ class uTorrentAPI(GenericClient):
|
||||
'v': sickbeard.TORRENT_LABEL
|
||||
}
|
||||
return self._request(params=params)
|
||||
|
||||
def _set_torrent_priority(self, result):
|
||||
|
||||
if result.priority == 1:
|
||||
params = {'action': 'queuetop', 'hash': result.hash}
|
||||
return self._request(params=params)
|
||||
|
||||
def _set_torrent_pause(self, result):
|
||||
|
||||
@ -74,4 +80,4 @@ class uTorrentAPI(GenericClient):
|
||||
return self._request(params=params)
|
||||
|
||||
|
||||
api = uTorrentAPI()
|
||||
api = uTorrentAPI()
|
||||
|
Loading…
Reference in New Issue
Block a user