Private GIT

Skip to content
Snippets Groups Projects
Commit 21b64586 authored by labrys's avatar labrys
Browse files

Fix issue #114 IPv6 breaks IPv4 compatibility.

parent 422f242e
No related branches found
No related tags found
No related merge requests found
...@@ -318,7 +318,7 @@ class SickRage(object): ...@@ -318,7 +318,7 @@ class SickRage(object):
self.webhost = sickbeard.WEB_HOST self.webhost = sickbeard.WEB_HOST
else: else:
if sickbeard.WEB_IPV6: if sickbeard.WEB_IPV6:
self.webhost = '::' self.webhost = ''
else: else:
self.webhost = '0.0.0.0' self.webhost = '0.0.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment