Skip to content

Commit

Permalink
fix : 단일 미션 WAIT 상태 리턴
Browse files Browse the repository at this point in the history
  • Loading branch information
seungueonn committed Nov 29, 2023
1 parent 2c5b71b commit 629d6ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Optional<List<GatherRepeatMissionRes>> findRepeatMissionByMemberId(Long m
@Override
public Optional<List<Mission>> findMissionByDueTo() {

LocalDateTime oneHourAgo = LocalDateTime.now().minusHours(1);
LocalDateTime oneHourAgo = LocalDateTime.now();

return Optional.ofNullable(queryFactory
.selectFrom(mission)
Expand Down

0 comments on commit 629d6ca

Please sign in to comment.