fix: add missing await

This commit is contained in:
yassinedorbozgithub
2024-12-07 11:59:00 +01:00
parent 62e59069dd
commit afa8364996
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);
}
/**