Skip to content

Commit

Permalink
fix: 캐시 설정 시 isHolding 필드도 같이 설정하도록 수정
Browse files Browse the repository at this point in the history
- 코파일럿 최고

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
Tolerblanc and Copilot authored Nov 21, 2024
1 parent 3a4cda3 commit bade715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/yjs/yjs.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class YjsService

if (updateCondition) {
await this.nodeService.updateNode(id, { title, x, y });
await this.nodeCacheService.set(id, title);
await this.nodeCacheService.set(id, { title, isHolding });
}
}
});
Expand Down

0 comments on commit bade715

Please sign in to comment.