Skip to content

Commit

Permalink
Merge pull request #87 from Modagbul/feat/mission-closing
Browse files Browse the repository at this point in the history
fix : 한번미션 wait 리턴
  • Loading branch information
seungueonn authored Nov 26, 2023
2 parents a228f57 + 5902eb5 commit 0b663ec
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 0b663ec

Please sign in to comment.