This commit is contained in:
tamaina 2023-08-11 15:12:27 +00:00
parent fe56d1361c
commit 588679f4bc
1 changed files with 2 additions and 2 deletions

View File

@ -107,10 +107,10 @@ export class NoteManager {
}
public set(_note: Note): void {
if (this.updatedAt.has(_note.id) && this.notesSource.value.has(_note.id)) {
if (this.updatedAt.has(_note.id)) {
if (this.updatedAt.get(_note.id)! + 100 > Date.now()) {
if (this.isDebuggerEnabled) console.log('NoteManager: set ignore', _note.id);
// 100ms以内に更新されたートは無視
// 100ms以内に更新されたートは無視computedが壊れるので
return;
}
}