commit 117b809bab531ec5d8eb2aa0f20a00c8f922a6a2
parent 48ad7c36a8357e5664085cd5d282fd6dfede2bc8
Author: ThomasV <thomasv@gitorious>
Date: Sun, 24 May 2015 16:14:56 +0200
fix issue #1238
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/daemon.py b/lib/daemon.py
@@ -167,7 +167,7 @@ class NetworkServer(util.DaemonThread):
m = response.get('method')
v = response.get('params')
for client in self.clients:
- if repr((m, v)) in client.subscriptions:
+ if repr((m, v)) in client.subscriptions or m == 'network.status':
client.response_queue.put(response)
self.network.stop()
print_error("server exiting")