socketio/socket.io-adapter

There seems to be a problem with the computeExceptSids method called in the apply method.

zishang520 opened this issue · 1 comments

BroadcastOptions.except is of type Set<SocketId> but computeExceptSids requires Set<Room>:

const except = this.computeExceptSids(opts.except);

BroadcastOptions.except:

except?: Set<SocketId>;

computeExceptSids:

private computeExceptSids(exceptRooms?: Set<Room>) {

Good catch, thanks! This should be fixed by 3410584.