diff options
Diffstat (limited to 'pyload/remote/RemoteManager.py')
-rw-r--r-- | pyload/remote/RemoteManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/remote/RemoteManager.py b/pyload/remote/RemoteManager.py index 7aeeb8a7a..b66b8b10a 100644 --- a/pyload/remote/RemoteManager.py +++ b/pyload/remote/RemoteManager.py @@ -67,8 +67,8 @@ class RemoteManager(): def startBackends(self): - host = self.core.config["remote"]["listenaddr"] - port = self.core.config["remote"]["port"] + host = self.core.config["webUI"]["wsHost"] + port = self.core.config["webUI"]["wsPort"] for b in self.available: klass = getattr(__import__("pyload.remote.%s" % b, globals(), locals(), [b], -1), b) |