Skip to content

Commit

Permalink
fix: 피드 record finishedAt 내림차순으로 정렬 (#352)
Browse files Browse the repository at this point in the history
fix: 피드 record finishedAt desc
  • Loading branch information
char-yb authored Feb 21, 2024
1 parent c49016c commit 0e157af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public List<FeedOneResponse> findFeedByVisibility(
missionRecord.mission.member.in(members),
missionRecord.mission.visibility.in(visibilities),
uploadStatusCompleteEq())
.orderBy(missionRecord.startedAt.desc())
.orderBy(missionRecord.finishedAt.desc())
.limit(FEED_TAB_LIMIT)
.fetch();
}
Expand Down

0 comments on commit 0e157af

Please sign in to comment.