mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
mixer: don't use the client pool for local filters
This commit is contained in:
parent
05a7a773fe
commit
fecd69bf8f
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue