chore: Update translations
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martti Malmi 2024-02-01 08:17:27 +00:00
parent 13a773a1ad
commit cd5cc07857

View File

@ -80,7 +80,7 @@ export class DefaultConnectionPool extends EventEmitter<NostrConnectionPoolEvent
} }
this.#requestedIds.add(id); this.#requestedIds.add(id);
// is this performant? should it be batched? // is this performant? should it be batched?
const alreadyHave = await this.#system.cacheRelay?.query(["REQ", id, {ids: [id]}]); const alreadyHave = await this.#system.cacheRelay?.query(["REQ", id, { ids: [id] }]);
if (alreadyHave?.length) { if (alreadyHave?.length) {
this.#log("HAVE: Already have %s", id); this.#log("HAVE: Already have %s", id);
return; return;