1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-11 03:45:01 -05:00

Merge pull request #740 from cptjhmiller/patch-1

Update trakt.py
This commit is contained in:
adam111316 2014-08-23 11:30:37 +08:00
commit 7de9d96340

View File

@ -68,10 +68,15 @@ class TraktNotifier:
# URL parameters, should not need to recheck data (done above) # URL parameters, should not need to recheck data (done above)
data = { data = {
'tvdb_id': ep_obj.show.indexerid, 'shows': [
'title': ep_obj.show.name, {
'year': ep_obj.show.startyear 'tvdb_id': ep_obj.show.indexerid,
'title': ep_obj.show.name,
'year': ep_obj.show.startyear
}
]
} }
TraktCall("show/unwatchlist/%API%", self._api(), self._username(), self._password(), data) TraktCall("show/unwatchlist/%API%", self._api(), self._username(), self._password(), data)
# Remove all episodes from episode watchlist # Remove all episodes from episode watchlist
@ -82,7 +87,7 @@ class TraktNotifier:
for show in watchlist: for show in watchlist:
# Check if tvdb_id exists # Check if tvdb_id exists
if 'tvdb_id' in show: if 'tvdb_id' in show:
if unicode(data['tvdb_id']) == show['tvdb_id']: if unicode(data['shows'][0]['tvdb_id']) == show['tvdb_id']:
data_show = { data_show = {
'title': show['title'], 'title': show['title'],
'tvdb_id': show['tvdb_id'], 'tvdb_id': show['tvdb_id'],