diff --git a/VERSION b/VERSION index b7c2bac2..915d97d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.3-develop2 +1.17.3-develop3 diff --git a/modules/trakt.py b/modules/trakt.py index 3c92f128..90917267 100644 --- a/modules/trakt.py +++ b/modules/trakt.py @@ -140,7 +140,10 @@ class Trakt: if response.status_code != 200: raise Failed(f"Trakt Error: ({response.status_code}) {response.reason}") #raise Failed("Trakt Error: Invalid trakt pin. If you're sure you typed it in correctly your client_id or client_secret may be invalid") - elif not self._save(response.json()): + response_json = response.json() + if self.config.trace_mode: + logger.debug(response_json) + if not self._save(response_json): raise Failed("Trakt Error: New Authorization Failed") def _check(self, authorization=None):