Skip to content

Commit

Permalink
fix : 한번미션 wait 리턴
Browse files Browse the repository at this point in the history
  • Loading branch information
seungueonn committed Nov 26, 2023
1 parent a46e1c0 commit 5902eb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public Optional<List<GatherSingleMissionRes>> findSingleMissionByMemberId(Long m
.from(mission)
.where(
mission.team.teamId.in(teams),
mission.status.eq(MissionStatus.ONGOING),
mission.status.eq(MissionStatus.ONGOING).or(mission.status.eq(MissionStatus.WAIT)),
mission.type.eq(MissionType.ONCE)

)
Expand Down

0 comments on commit 5902eb5

Please sign in to comment.