mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Fix XEM Exceptions
This commit is contained in:
parent
f2a0415944
commit
0a7c594a6f
2 changed files with 5 additions and 1 deletions
|
@ -122,6 +122,7 @@
|
||||||
* Fix correctly initialise IMDb id loaded from db
|
* Fix correctly initialise IMDb id loaded from db
|
||||||
* Fix loading shows from the DB that have NULL IMDb id
|
* Fix loading shows from the DB that have NULL IMDb id
|
||||||
* Change order of snatched provider images to chronological on History layout compact and add ordinal indicators in the tooltips
|
* Change order of snatched provider images to chronological on History layout compact and add ordinal indicators in the tooltips
|
||||||
|
* Fix XEM Exceptions in case of bad data from XEM
|
||||||
|
|
||||||
### 0.7.2 (2015-03-10 17:05:00 UTC)
|
### 0.7.2 (2015-03-10 17:05:00 UTC)
|
||||||
|
|
||||||
|
|
|
@ -317,7 +317,10 @@ def _xem_exceptions_fetcher():
|
||||||
continue
|
continue
|
||||||
|
|
||||||
for indexerid, names in parsedJSON['data'].items():
|
for indexerid, names in parsedJSON['data'].items():
|
||||||
xem_exception_dict[int(indexerid)] = names
|
try:
|
||||||
|
xem_exception_dict[int(indexerid)] = names
|
||||||
|
except:
|
||||||
|
continue
|
||||||
|
|
||||||
setLastRefresh('xem')
|
setLastRefresh('xem')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue