David Buschtöns

Results 1 issues of David Buschtöns

According to the [documentation](https://socket.io/docs/v4/namespaces/#dynamic-namespaces), you should be able to access the namespace of a socket with `socket.nsp` ```javascript io.of(/^\/dynamic-\d+$/).on("connection", (socket) => { const namespace = socket.nsp; }); ``` However, in...