From d1a4017a10a4759817f5380c5dd418706d73e651 Mon Sep 17 00:00:00 2001 From: Mitchell Klijs Date: Thu, 17 May 2018 13:08:04 +0200 Subject: [PATCH] Updated wrong config keys --- traktarr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/traktarr.py b/traktarr.py index d4fcf81..23e4b8c 100755 --- a/traktarr.py +++ b/traktarr.py @@ -321,7 +321,7 @@ def movie(movie_id, folder=None, no_search=False): validate_trakt(trakt, False) validate_pvr(radarr, 'Radarr', False) - profile_id = get_profile_id(radarr, cfg.sonarr.profile) + profile_id = get_profile_id(radarr, cfg.radarr.profile) # get trakt movie trakt_movie = trakt.get_movie(movie_id) @@ -380,7 +380,7 @@ def movies(list_type, add_limit=0, add_delay=2.5, genre=None, folder=None, no_se validate_trakt(trakt, notifications) validate_pvr(radarr, 'Radarr', notifications) - profile_id = get_profile_id(radarr, cfg.sonarr.profile) + profile_id = get_profile_id(radarr, cfg.radarr.profile) pvr_objects_list = get_objects(radarr, 'Radarr', notifications)