1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 19:12:26 -05:00

Merge branch 'pulls/72'

This commit is contained in:
echel0n 2014-04-25 03:14:08 -07:00
commit 10babc4d34

View File

@ -64,6 +64,12 @@ class uTorrentAPI(GenericClient):
} }
return self._request(params=params) 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): def _set_torrent_pause(self, result):
if sickbeard.TORRENT_PAUSED: if sickbeard.TORRENT_PAUSED: