mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix issue that data got send out to all connected clients
This commit is contained in:
parent
32204d35d1
commit
95c721b08f
|
@ -71,7 +71,7 @@ export class Push {
|
|||
data,
|
||||
};
|
||||
|
||||
this.channel.send(JSON.stringify(sendData));
|
||||
this.channel.send(JSON.stringify(sendData), [this.connections[sessionId]]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue