We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3141337 + 7c3f117 commit c2ad55eCopy full SHA for c2ad55e
server/src/workspace/workspace.service.ts
@@ -52,7 +52,10 @@ export class WorkSpaceService implements OnModuleInit {
52
const bulkOps = [];
53
for (const [roomId, workspace] of this.workspaces.entries()) {
54
// guest workspace는 제외
55
- if (roomId === "guest") continue;
+ if (roomId === "guest") {
56
+ await this.clearDeletedObject(workspace);
57
+ continue;
58
+ }
59
60
// room의 연결된 클라이언트 수 확인
61
const room = this.server.sockets.adapter.rooms.get(roomId);
0 commit comments