Browse Source

Fix XEM Exceptions

pull/319/head
Prinz23 10 years ago
parent
commit
0a7c594a6f
  1. 1
      CHANGES.md
  2. 5
      sickbeard/scene_exceptions.py

1
CHANGES.md

@ -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)

5
sickbeard/scene_exceptions.py

@ -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')

Loading…
Cancel
Save