Skip to content

Commit 0541d84

Browse files
committed
Fix http server
1 parent 9fabd15 commit 0541d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/Remotes/HTTP.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export default class HTTP {
100100
})
101101

102102
this.fastifyServer.register(async function (fastify) {
103-
fastify.get('/ws', { websocket: true });
103+
fastify.get('/ws', { websocket: true }, () => {});
104104
})
105105

106106
}

0 commit comments

Comments
 (0)