fix(core): update

This commit is contained in:
2022-01-19 07:01:58 +01:00
parent 6fdf0d9955
commit 489ad9284b
10 changed files with 68 additions and 53 deletions

View File

@@ -77,5 +77,9 @@ export class SocketServer {
/**
* closes the server
*/
public async stop() {}
public async stop() {
if (this.httpServer) {
this.httpServer.close();
}
}
}