Fix XEM Exceptions

This commit is contained in:
Prinz23 2015-04-02 11:48:25 +02:00
parent f2a0415944
commit 0a7c594a6f
2 changed files with 5 additions and 1 deletions

View file

@ -122,6 +122,7 @@
* Fix correctly initialise IMDb id loaded from db
* 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
* Fix XEM Exceptions in case of bad data from XEM
### 0.7.2 (2015-03-10 17:05:00 UTC)

View file

@ -317,7 +317,10 @@ def _xem_exceptions_fetcher():
continue
for indexerid, names in parsedJSON['data'].items():
xem_exception_dict[int(indexerid)] = names
try:
xem_exception_dict[int(indexerid)] = names
except:
continue
setLastRefresh('xem')