Compare commits
No commits in common. "4e84678a3cca4410cbda4d59da52c7f5ba680740" and "476e4e8eb1b07e1fefbdc36832e4a793aee3128f" have entirely different histories.
4e84678a3c
...
476e4e8eb1
|
@ -54,7 +54,6 @@ class ExplorerQueryRepository(
|
|||
.where(
|
||||
creatorFollowing.isActive.isTrue
|
||||
.and(creatorFollowing.creator.id.eq(creatorId))
|
||||
.and(creatorFollowing.member.isActive.isTrue)
|
||||
)
|
||||
.fetch()
|
||||
}
|
||||
|
|
|
@ -58,8 +58,8 @@ class LiveRoomQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : L
|
|||
.offset(offset)
|
||||
.limit(limit)
|
||||
.orderBy(
|
||||
quarterLiveRankings.totalCan.coalesce(0).desc(),
|
||||
quarterLiveRankings.totalParticipants.coalesce(0).desc(),
|
||||
quarterLiveRankings.totalCan.desc(),
|
||||
quarterLiveRankings.totalParticipants.desc(),
|
||||
liveRoom.beginDateTime.desc(),
|
||||
liveRoom.member.createdAt.desc()
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue