From 83237af9ce8303322e6033a878838b6df9cc7e8c Mon Sep 17 00:00:00 2001 From: kidburglar Date: Sat, 5 Jan 2019 15:08:56 +0100 Subject: [PATCH] Add verify=False for the test_url route --- bazarr/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/main.py b/bazarr/main.py index 6cce0b36e..77ecdf7ce 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -1736,7 +1736,7 @@ def api_history(): def test_url(protocol, url): url = urllib.unquote(url) try: - result = requests.get(protocol + "://" + url, allow_redirects=False).json()['version'] + result = requests.get(protocol + "://" + url, allow_redirects=False, verify=False).json()['version'] except: return dict(status=False) else: