This commit is contained in:
ThomasV 2015-05-24 16:14:56 +02:00
parent 48ad7c36a8
commit 117b809bab
1 changed files with 1 additions and 1 deletions

View File

@ -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")