remove debugger statment

This commit is contained in:
Kieran 2023-08-23 13:20:38 +01:00
parent fb29cfa952
commit 064cb36509
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -152,9 +152,6 @@ export class FlatNoteStore extends HookedNoteStore<Readonly<Array<TaggedNostrEve
} else {
const existing = this.#events.find(b => b.id === a.id);
if (existing) {
if(!Boolean(Object.getOwnPropertyDescriptor(existing, "relays")?.writable)) {
debugger;
}
existing.relays = appendDedupe(existing.relays, a.relays);
}
}