mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
Merge pull request #425 from Hexastack/fix/missing-await
fix: add missing await
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user