Skip to content

Commit

Permalink
v2.0.8 (#426)
Browse files Browse the repository at this point in the history
v2.0.8
  • Loading branch information
char-yb authored Feb 26, 2025
2 parents 0512f7c + 3e07bf4 commit 8b5f5ba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ public Slice<FeedOneResponse> findFeedByVisibilityAndPage(
ltMissionRecordId(lastId),
missionRecord.mission.member.in(members),
missionRecord.mission.visibility.in(visibilities),
checkMissionVisibilityNone(),
uploadStatusCompleteEq())
.orderBy(missionRecord.finishedAt.desc())
.limit((long) size + 1)
Expand All @@ -157,7 +158,8 @@ public List<MissionRecord> findFeedAllByMemberId(
.where(
mission.visibility.in(visibilities),
mission.member.id.eq(memberId),
uploadStatusCompleteEq())
uploadStatusCompleteEq(),
checkMissionVisibilityNone())
.orderBy(missionRecord.startedAt.desc())
.fetch();
}
Expand Down

0 comments on commit 8b5f5ba

Please sign in to comment.