From 95c721b08f9dfaed89e85b0ae4d62415321efca0 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 18 Jul 2019 19:53:18 +0200 Subject: [PATCH] :bug: Fix issue that data got send out to all connected clients --- packages/cli/src/Push.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/Push.ts b/packages/cli/src/Push.ts index b10c3f7266..5d76c89294 100644 --- a/packages/cli/src/Push.ts +++ b/packages/cli/src/Push.ts @@ -71,7 +71,7 @@ export class Push { data, }; - this.channel.send(JSON.stringify(sendData)); + this.channel.send(JSON.stringify(sendData), [this.connections[sessionId]]); } }