From 6f61e25fb35517b9f03d4c89cc2643afd1b6b0fa Mon Sep 17 00:00:00 2001 From: echel0n Date: Sat, 29 Nov 2014 02:24:30 -0800 Subject: [PATCH] Fix for issue #891 - Trakt notifications failing --- sickbeard/notifiers/trakt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/notifiers/trakt.py b/sickbeard/notifiers/trakt.py index c5ff864c..331a6587 100644 --- a/sickbeard/notifiers/trakt.py +++ b/sickbeard/notifiers/trakt.py @@ -82,7 +82,7 @@ class TraktNotifier: } if trakt_id == 'tvdb_id': - data['shows'][trakt_id] = ep_obj.show.indexerid + data['shows'][0][trakt_id] = ep_obj.show.indexerid trakt_api.traktRequest("show/unwatchlist/%APIKEY%", data)