Merge pull request #425 from Hexastack/fix/missing-await

fix: add missing await
This commit is contained in:
Med Marrouchi
2024-12-09 15:32:16 +01:00
committed by GitHub
12 changed files with 17 additions and 17 deletions

View File

@@ -49,7 +49,7 @@ export class ContentService extends BaseService<
* @return A list of content matching the search query.
*/
async textSearch(query: string) {
return this.repository.textSearch(query);
return await this.repository.textSearch(query);
}
/**