aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2019-01-05 20:23:13 -0500
committerGitHub <[email protected]>2019-01-05 20:23:13 -0500
commit4141b7c280fa48fba620d823533d5e98fddda0ad (patch)
treeca25452b87e07234cc43d4b433f6601bb5618308
parentdb16f7df4b83d0a225d519e8037b55764f3d0d5f (diff)
parent83237af9ce8303322e6033a878838b6df9cc7e8c (diff)
downloadbazarr-4141b7c280fa48fba620d823533d5e98fddda0ad.tar.gz
bazarr-4141b7c280fa48fba620d823533d5e98fddda0ad.zip
Merge pull request #265 from kidburglar/264-Possibility-to-avoid-certificate-verification
-rw-r--r--bazarr/main.py2
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: