This commit is contained in:
tamaina 2023-08-11 13:04:53 +00:00
parent 51e270cd3c
commit 74b1a5cdd9
1 changed files with 4 additions and 1 deletions

View File

@ -435,7 +435,10 @@ export class NoteManager {
this.captureing.delete(id);
// キャプチャが終わったらcomputedキャッシュも消してしまう
if (!noDeletion) this.notesComputed.delete(id);
if (!noDeletion) {
this.notesComputed.delete(id);
if (this.isDebuggerEnabled) console.log('NoteManager: decapture (delete computed)', id);
}
}
/**