Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/4141b7c280fa48fba620d823533d5e98fddda0ad You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from kidburglar/264-Possibility-to-avoid-certificate-verification

pull/292/head
morpheus65535 6 years ago committed by GitHub
commit 4141b7c280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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:

Loading…
Cancel
Save