mixer: don't use the client pool for local filters
This commit is contained in:
parent
05a7a773fe
commit
fecd69bf8f
|
@ -12,7 +12,7 @@ async function getFilters<K extends number>(
|
|||
opts?: GetFiltersOpts,
|
||||
): Promise<Event<K>[]> {
|
||||
const results = await Promise.allSettled([
|
||||
client.getFilters(filters, opts),
|
||||
client.getFilters(filters.filter((filter) => !filter.local), opts),
|
||||
eventsDB.getFilters(filters, opts),
|
||||
]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue