Skip to content

Commit

Permalink
Merge pull request #359 from TrueTechy/because-why-not
Browse files Browse the repository at this point in the history
SSL Verification Fix
  • Loading branch information
mcarlton00 committed Aug 10, 2020
2 parents 6341bb2 + a1a318d commit 2dff3a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jellyfin_kodi/jellyfin/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def send_request(self, url, path, method="get", timeout=None, headers=None, data
"data": data
}

if not settings('sslverify'):
if not settings('sslverify.bool'):
request_settings["verify"] = False

LOG.info("Sending %s request to %s" % (method, path))
Expand Down

0 comments on commit 2dff3a9

Please sign in to comment.