Skip to content

Commit

Permalink
fix/ append omitted "await" (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
seongyunlee authored Oct 23, 2023
1 parent 4ee428a commit 5d39c00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tutoring/tutoring.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@ export class TutoringService {
}
return new Success(
'수업 정보를 가져왔습니다.',
this.classroomChannel(tutoringId, userId),
await this.classroomChannel(tutoringId, userId),
);
} catch (e) {
return new Fail('수업 정보를 가져오는데 실패했습니다.' + e.message);
return new Fail('수업 정보를 가져오는데 실패했습니다.');
}
}

Expand Down

0 comments on commit 5d39c00

Please sign in to comment.