mirror of
https://github.com/docmost/docmost.git
synced 2025-11-26 12:23:46 +10:00
fix: add missing awaits (#814)
This commit is contained in:
@@ -20,7 +20,7 @@ export class CommentService {
|
||||
) {}
|
||||
|
||||
async findById(commentId: string) {
|
||||
const comment = this.commentRepo.findById(commentId, {
|
||||
const comment = await this.commentRepo.findById(commentId, {
|
||||
includeCreator: true,
|
||||
});
|
||||
if (!comment) {
|
||||
|
||||
Reference in New Issue
Block a user