mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
Use "127.0.0.1" instead of "localhost" when starting the SignalReceiver
This commit is contained in:
parent
56c496dc5d
commit
db736c9075
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class SignalReceiver(ThreadingMixIn, SimpleXMLRPCServer.SimpleXMLRPCServer):
|
||||||
|
|
||||||
def start_server(self, port=None):
|
def start_server(self, port=None):
|
||||||
# Setup the xmlrpc server
|
# Setup the xmlrpc server
|
||||||
host = "localhost"
|
host = "127.0.0.1"
|
||||||
if self.remote == True:
|
if self.remote == True:
|
||||||
host = ""
|
host = ""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue