fix: search being broken on dev through mastodon
This commit is contained in:
parent
4fa15f27c7
commit
20a8bb0467
|
@ -183,7 +183,7 @@ export class SearchService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const res = await this.meilisearchNoteIndex!.search(q, {
|
const res = await this.meilisearchNoteIndex!.search(q, {
|
||||||
sort: [`createdAt:${opts.order}`],
|
sort: [`createdAt:${opts.order ? opts.order : 'desc'}`],
|
||||||
matchingStrategy: 'all',
|
matchingStrategy: 'all',
|
||||||
attributesToRetrieve: ['id', 'createdAt'],
|
attributesToRetrieve: ['id', 'createdAt'],
|
||||||
filter: compileQuery(filter),
|
filter: compileQuery(filter),
|
||||||
|
|
Loading…
Reference in New Issue