Compare commits

..

No commits in common. "05df86e15accdbd717ef22756f3a01ca62302c7a" and "8b433027e2b208f72a39f18996b954274f47bdab" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -54,7 +54,6 @@ class ExplorerQueryRepository(
.where(
creatorFollowing.isActive.isTrue
.and(creatorFollowing.creator.id.eq(creatorId))
.and(creatorFollowing.member.isActive.isTrue)
)
.fetch()
}

View File

@ -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()
)