1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-24 05:17:03 +00:00

websocket: fix a bug on emit on specific room when it doesn't exist it sends to all connections caused by a third-party contributor's PR...

Former-commit-id: de6fddadd7cef8537ad1d1aff1acd991e4cf99cf
This commit is contained in:
Gerasimos Maropoulos
2018-05-02 17:47:14 +03:00
parent 087c8c8b3a
commit 0db2afea93
2 changed files with 14 additions and 11 deletions

View File

@@ -511,6 +511,7 @@ func (c *connection) To(to string) Emitter {
} else if to == c.id {
return c.self
}
// is an emitter to another client/connection
return newEmitter(c, to)
}