Skip to content

Commit c2ad55e

Browse files
committed
Merge branch 'release/1.0.6'
2 parents 3141337 + 7c3f117 commit c2ad55e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

server/src/workspace/workspace.service.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ export class WorkSpaceService implements OnModuleInit {
5252
const bulkOps = [];
5353
for (const [roomId, workspace] of this.workspaces.entries()) {
5454
// guest workspace는 제외
55-
if (roomId === "guest") continue;
55+
if (roomId === "guest") {
56+
await this.clearDeletedObject(workspace);
57+
continue;
58+
}
5659

5760
// room의 연결된 클라이언트 수 확인
5861
const room = this.server.sockets.adapter.rooms.get(roomId);

0 commit comments

Comments
 (0)