We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e69dd commit cd9d5f4Copy full SHA for cd9d5f4
1 file changed
packages/engine.io/lib/server.ts
@@ -532,7 +532,9 @@ export abstract class BaseServer extends EventEmitter {
532
if (this.middlewares.length > 0) {
533
// middlewares expect an IncomingMessage argument, which cannot be created from the WebTransport session object
534
// see also: https://github.com/fails-components/webtransport/issues/448
535
- debug("closing session since WebTransport is not compatible with middlewares");
+ debug(
536
+ "closing session since WebTransport is not compatible with middlewares",
537
+ );
538
return session.close();
539
}
540
0 commit comments