From 2bab8d9357d0d120d3ac896cacaadf8cd6dd5b92 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Sun, 29 May 2016 17:40:15 +0200 Subject: [PATCH] Disable SSL check if entering PMS manually --- resources/lib/entrypoint.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lib/entrypoint.py b/resources/lib/entrypoint.py index 72b6cdbb..d1cb9883 100644 --- a/resources/lib/entrypoint.py +++ b/resources/lib/entrypoint.py @@ -1665,6 +1665,8 @@ def enterPMS(): utils.settings('https', value=https) utils.settings('ipaddress', value=ip) utils.settings('port', value=port) + # Chances are this is a local PMS, so disable SSL certificate check + utils.settings('sslverify', value='false') # Sign out to trigger new login if __LogOut():