Merge branch 'fix-revoke-username' into 'main'

fix: call relay.remove

See merge request soapbox-pub/ditto!694
This commit is contained in:
P. Reis 2025-02-27 23:01:41 +00:00
commit 33ac502f78

View file

@ -47,6 +47,11 @@ export class DittoAPIStore implements NRelay {
})();
}
async remove(filters: NostrFilter[], opts?: { signal?: AbortSignal }): Promise<void> {
const { relay } = this.opts;
return await relay.remove!(filters, opts);
}
async close(): Promise<void> {
const { pool, relay } = this.opts;