diff --git a/bazarr/main.py b/bazarr/main.py index c22d65300..cbf1b6b3e 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -1705,7 +1705,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: