1
0

gui should always use daemon if it is running

This commit is contained in:
ThomasV
2014-07-25 16:44:22 +02:00
parent af3fd62fd4
commit 37ad7d8b0b

View File

@@ -221,8 +221,8 @@ if __name__ == '__main__':
# network interface
if not options.offline:
if options.daemon:
s = daemon_socket()
s = daemon_socket(start_daemon=options.daemon)
if s:
network = NetworkProxy(s, config)
network.start()
else: