Compare commits

..

No commits in common. "4e84678a3cca4410cbda4d59da52c7f5ba680740" and "476e4e8eb1b07e1fefbdc36832e4a793aee3128f" 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()
)