SearchStore: bail early for empty filters
This commit is contained in:
parent
2595f1aadf
commit
6d80b43335
|
@ -35,6 +35,10 @@ class SearchStore implements EventStore {
|
||||||
opts?: GetEventsOpts | undefined,
|
opts?: GetEventsOpts | undefined,
|
||||||
): Promise<DittoEvent<K>[]> {
|
): Promise<DittoEvent<K>[]> {
|
||||||
filters = normalizeFilters(filters);
|
filters = normalizeFilters(filters);
|
||||||
|
|
||||||
|
if (opts?.signal?.aborted) return Promise.resolve([]);
|
||||||
|
if (!filters.length) return Promise.resolve([]);
|
||||||
|
|
||||||
this.#debug('REQ', JSON.stringify(filters));
|
this.#debug('REQ', JSON.stringify(filters));
|
||||||
const query = filters[0]?.search;
|
const query = filters[0]?.search;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue