mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
262427dc8b
3 changed files with 12 additions and 6 deletions
|
@ -29,6 +29,12 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 0.16.17 (2018-07-01 01:00:00 UTC)
|
||||||
|
|
||||||
|
* Update UnRar for Windows 5.50 to 5.60
|
||||||
|
* Fix API save show paused state and API exception raised when no indexer results
|
||||||
|
|
||||||
|
|
||||||
### 0.16.16 (2018-06-09 12:13:00 UTC)
|
### 0.16.16 (2018-06-09 12:13:00 UTC)
|
||||||
|
|
||||||
* Fix metadata mediabrowser when no actors
|
* Fix metadata mediabrowser when no actors
|
||||||
|
|
Binary file not shown.
|
@ -2414,14 +2414,12 @@ class CMD_SickGearSearchIndexers(ApiCall):
|
||||||
lINDEXER_API_PARMS['custom_ui'] = classes.AllShowsNoFilterListUI
|
lINDEXER_API_PARMS['custom_ui'] = classes.AllShowsNoFilterListUI
|
||||||
t = sickbeard.indexerApi(i).indexer(**lINDEXER_API_PARMS)
|
t = sickbeard.indexerApi(i).indexer(**lINDEXER_API_PARMS)
|
||||||
|
|
||||||
apiData = None
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
apiData = t[str(self.name).encode(), False]
|
apiData = t[str(self.name).encode(), False]
|
||||||
except (StandardError, Exception):
|
except (StandardError, Exception):
|
||||||
pass
|
continue
|
||||||
|
|
||||||
for curSeries in apiData:
|
for curSeries in (apiData or []):
|
||||||
s = {"indexerid": int(curSeries['id']),
|
s = {"indexerid": int(curSeries['id']),
|
||||||
"name": curSeries['seriesname'],
|
"name": curSeries['seriesname'],
|
||||||
"first_aired": curSeries['firstaired'],
|
"first_aired": curSeries['firstaired'],
|
||||||
|
@ -3659,10 +3657,12 @@ class CMD_SickGearShowPause(ApiCall):
|
||||||
return _responds(RESULT_FAILURE, msg="Show not found")
|
return _responds(RESULT_FAILURE, msg="Show not found")
|
||||||
|
|
||||||
if self.pause:
|
if self.pause:
|
||||||
showObj.paused = 1
|
showObj.paused = True
|
||||||
|
showObj.saveToDB()
|
||||||
return _responds(RESULT_SUCCESS, msg=str(showObj.name) + " has been paused")
|
return _responds(RESULT_SUCCESS, msg=str(showObj.name) + " has been paused")
|
||||||
else:
|
else:
|
||||||
showObj.paused = 0
|
showObj.paused = False
|
||||||
|
showObj.saveToDB()
|
||||||
return _responds(RESULT_SUCCESS, msg=str(showObj.name) + " has been unpaused")
|
return _responds(RESULT_SUCCESS, msg=str(showObj.name) + " has been unpaused")
|
||||||
|
|
||||||
return _responds(RESULT_FAILURE, msg=str(showObj.name) + " was unable to be paused")
|
return _responds(RESULT_FAILURE, msg=str(showObj.name) + " was unable to be paused")
|
||||||
|
|
Loading…
Reference in a new issue