This commit is contained in:
parent
ff6e3cc2c9
commit
f083cbbeb2
|
@ -333,14 +333,14 @@ export class NoteManager {
|
|||
if (this.isDebuggerEnabled) console.log('NoteManager: onStreamNoteUpdated', noteData);
|
||||
|
||||
if (!note || !note.value) {
|
||||
if (this.isDebuggerEnabled) console.log('NoteManager: onStreamNoteUpdated (not found)', note, note?.value);
|
||||
if (this.isDebuggerEnabled) console.log('NoteManager: onStreamNoteUpdated (not found)', id, note?.value);
|
||||
this.connection?.send('un', { id });
|
||||
this.captureing.delete(id);
|
||||
this.deleteComputed(id);
|
||||
this.updatedAt.delete(id);
|
||||
return;
|
||||
} else {
|
||||
if (this.isDebuggerEnabled) console.log('NoteManager: onStreamNoteUpdated (found)', note.value);
|
||||
if (this.isDebuggerEnabled) console.log('NoteManager: onStreamNoteUpdated (found)', id, note.value, { type, id, body });
|
||||
}
|
||||
|
||||
switch (type) {
|
||||
|
|
Loading…
Reference in New Issue