Skip to content

Commit

Permalink
Return if meeting user id found
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel committed Apr 19, 2024
1 parent b657d06 commit 12e1e38
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ export class UserRepositoryService extends BaseRepository<ViewUser, User> {
for (const meetingUser of this.meetingUserRepo.getViewModelList()) {
if (meetingUser.user_id === model.id) {
meetingUserIdMap.set(meetingUser.meeting_id, meetingUser.id);
return meetingUser.id;
}
}
}
Expand Down

0 comments on commit 12e1e38

Please sign in to comment.