mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
eb459d8f50
2 changed files with 6 additions and 1 deletions
|
@ -154,6 +154,11 @@
|
||||||
* Add parse repack, proper level to recent search flow
|
* Add parse repack, proper level to recent search flow
|
||||||
|
|
||||||
|
|
||||||
|
### 0.12.36 (2017-11-01 11:45:00 UTC)
|
||||||
|
|
||||||
|
* Change qBittorent to handle the change to its API success/fail response
|
||||||
|
|
||||||
|
|
||||||
### 0.12.35 (2017-10-27 20:30:00 UTC)
|
### 0.12.35 (2017-10-27 20:30:00 UTC)
|
||||||
|
|
||||||
* Change and add some network logos
|
* Change and add some network logos
|
||||||
|
|
|
@ -39,7 +39,7 @@ class QbittorrentAPI(GenericClient):
|
||||||
|
|
||||||
def _post_api(self, cmd='', **kwargs):
|
def _post_api(self, cmd='', **kwargs):
|
||||||
|
|
||||||
return '' == helpers.getURL('%scommand/%s' % (self.host, cmd), session=self.session, **kwargs)
|
return helpers.getURL('%scommand/%s' % (self.host, cmd), session=self.session, **kwargs) in ('', 'Ok.')
|
||||||
|
|
||||||
def _add_torrent(self, cmd, **kwargs):
|
def _add_torrent(self, cmd, **kwargs):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue