🐛 Fix issue that data got send out to all connected clients

This commit is contained in:
Jan Oberhauser 2019-07-18 19:53:18 +02:00
parent 32204d35d1
commit 95c721b08f

View file

@ -71,7 +71,7 @@ export class Push {
data, data,
}; };
this.channel.send(JSON.stringify(sendData)); this.channel.send(JSON.stringify(sendData), [this.connections[sessionId]]);
} }
} }