chore: random fixes

This commit is contained in:
2023-11-22 15:34:46 +00:00
parent a67263e5e1
commit 2884a35b5c
9 changed files with 75 additions and 66 deletions

View File

@ -400,7 +400,7 @@ export class NostrSystem extends EventEmitter<NostrSystemEvents> implements Syst
}
return;
}),
...replyRelays.filter(a => !socks.some(b => b.Address === a)).map(a => this.WriteOnceToRelay(a, ev)),
...replyRelays.filter(a => !this.#sockets.has(a)).map(a => this.WriteOnceToRelay(a, ev)),
]);
return removeUndefined(oks);
}