fix: add missing awaits (#814)

This commit is contained in:
Zero King 2025-03-06 18:14:30 +08:00 committed by GitHub
parent 72f64e7b10
commit 91596be70e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ export class CommentService {
) {} ) {}
async findById(commentId: string) { async findById(commentId: string) {
const comment = this.commentRepo.findById(commentId, { const comment = await this.commentRepo.findById(commentId, {
includeCreator: true, includeCreator: true,
}); });
if (!comment) { if (!comment) {

View File

@ -39,7 +39,7 @@ export class WorkspaceService {
} }
async getWorkspaceInfo(workspaceId: string) { async getWorkspaceInfo(workspaceId: string) {
const workspace = this.workspaceRepo.findById(workspaceId); const workspace = await this.workspaceRepo.findById(workspaceId);
if (!workspace) { if (!workspace) {
throw new NotFoundException('Workspace not found'); throw new NotFoundException('Workspace not found');
} }