diff options
author | morpheus65535 <[email protected]> | 2019-01-05 20:23:13 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2019-01-05 20:23:13 -0500 |
commit | 4141b7c280fa48fba620d823533d5e98fddda0ad (patch) | |
tree | ca25452b87e07234cc43d4b433f6601bb5618308 | |
parent | db16f7df4b83d0a225d519e8037b55764f3d0d5f (diff) | |
parent | 83237af9ce8303322e6033a878838b6df9cc7e8c (diff) | |
download | bazarr-4141b7c280fa48fba620d823533d5e98fddda0ad.tar.gz bazarr-4141b7c280fa48fba620d823533d5e98fddda0ad.zip |
Merge pull request #265 from kidburglar/264-Possibility-to-avoid-certificate-verification
-rw-r--r-- | bazarr/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |