mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
fix: add missing awaits (#814)
This commit is contained in:
parent
72f64e7b10
commit
91596be70e
@ -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) {
|
||||
|
@ -39,7 +39,7 @@ export class WorkspaceService {
|
||||
}
|
||||
|
||||
async getWorkspaceInfo(workspaceId: string) {
|
||||
const workspace = this.workspaceRepo.findById(workspaceId);
|
||||
const workspace = await this.workspaceRepo.findById(workspaceId);
|
||||
if (!workspace) {
|
||||
throw new NotFoundException('Workspace not found');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user