Revert "Revert "Revert "Revert "Support alternate address""""

This reverts commit 62ea6b0eb8.
This commit is contained in:
angelblue05 2015-06-29 11:45:03 -05:00
parent 4e802623c3
commit b6668ac6af
2 changed files with 7 additions and 1 deletions

View file

@ -96,6 +96,10 @@ class UserClient(threading.Thread):
HTTPS = addon.getSetting('https')
host = addon.getSetting('ipaddress')
port = addon.getSetting('port')
# Alternate host
if addon.getSetting('altip') == "true":
host = addon.getSetting('secondipaddress')
server = host + ":" + port
if host == "":