test: debug meilisearch not being found

This commit is contained in:
Mar0xy 2023-11-01 00:33:29 +01:00
parent 86db03cdd6
commit e9fafe9b51
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
1 changed files with 3 additions and 5 deletions

View File

@ -78,7 +78,7 @@ export class SearchService {
private idService: IdService,
) {
if (meilisearch) {
this.meilisearchNoteIndex = meilisearch.index(`${config.meilisearch!.index}---notes`);
this.meilisearchNoteIndex = meilisearch.index(`${this.config.meilisearch?.index}---notes`);
this.meilisearchNoteIndex.updateSettings({
searchableAttributes: [
'text',
@ -103,8 +103,8 @@ export class SearchService {
});
}
if (config.meilisearch?.scope) {
this.meilisearchIndexScope = config.meilisearch.scope;
if (this.config.meilisearch?.scope) {
this.meilisearchIndexScope = this.config.meilisearch.scope;
}
}
@ -113,8 +113,6 @@ export class SearchService {
if (note.text == null && note.cw == null) return;
if (!['home', 'public'].includes(note.visibility)) return;
console.error(note);
if (this.meilisearch) {
switch (this.meilisearchIndexScope) {
case 'global':