mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 01:43:37 +00:00
Fix for: 'NoneType' object is not iterable in trakt module
This commit is contained in:
parent
9d4122247e
commit
3b4346b053
1 changed files with 18 additions and 17 deletions
|
@ -83,6 +83,7 @@ class TraktNotifier:
|
||||||
# Start by getting all episodes in the watchlist
|
# Start by getting all episodes in the watchlist
|
||||||
watchlist = TraktCall("user/watchlist/episodes.json/%API%/" + sickbeard.TRAKT_USERNAME, sickbeard.TRAKT_API, sickbeard.TRAKT_USERNAME, sickbeard.TRAKT_PASSWORD)
|
watchlist = TraktCall("user/watchlist/episodes.json/%API%/" + sickbeard.TRAKT_USERNAME, sickbeard.TRAKT_API, sickbeard.TRAKT_USERNAME, sickbeard.TRAKT_PASSWORD)
|
||||||
|
|
||||||
|
if watchlist is not None:
|
||||||
# Convert watchlist to only contain current show
|
# Convert watchlist to only contain current show
|
||||||
for show in watchlist:
|
for show in watchlist:
|
||||||
# Check if tvdb_id exists
|
# Check if tvdb_id exists
|
||||||
|
|
Loading…
Reference in a new issue