From 684cab5c8a9a59ab48c9e25f6a3ac43d9abb67cd Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Tue, 16 Nov 2021 16:08:17 +1300 Subject: [PATCH] Add Support for Radarr V4 #1862 (#1863) --- core/auto_process/movies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/auto_process/movies.py b/core/auto_process/movies.py index aebd9a9c..5f20ec05 100644 --- a/core/auto_process/movies.py +++ b/core/auto_process/movies.py @@ -72,7 +72,7 @@ def process(section, dir_name, input_name=None, status=0, client_agent='manual', if section == 'Radarr': base_url = '{0}{1}:{2}{3}/api/v3/command'.format(protocol, host, port, web_root) url2 = '{0}{1}:{2}{3}/api/v3/config/downloadClient'.format(protocol, host, port, web_root) - headers = {'X-Api-Key': apikey} + headers = {'X-Api-Key': apikey, 'Content-Type': 'application/json'} if section == 'Watcher3': base_url = '{0}{1}:{2}{3}/postprocessing'.format(protocol, host, port, web_root) if not apikey: