Disable SSL check if entering PMS manually
This commit is contained in:
parent
153717da68
commit
2bab8d9357
1 changed files with 2 additions and 0 deletions
|
@ -1665,6 +1665,8 @@ def enterPMS():
|
||||||
utils.settings('https', value=https)
|
utils.settings('https', value=https)
|
||||||
utils.settings('ipaddress', value=ip)
|
utils.settings('ipaddress', value=ip)
|
||||||
utils.settings('port', value=port)
|
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
|
# Sign out to trigger new login
|
||||||
if __LogOut():
|
if __LogOut():
|
||||||
|
|
Loading…
Reference in a new issue