parent
bcd094c5dd
commit
348936a67e
|
@ -679,7 +679,15 @@ class LiveRoomService(
|
|||
.getNotificationUserIds(room.member!!.id!!)
|
||||
.contains(member.id)
|
||||
|
||||
val isActiveRoulette = rouletteRepository.findByIdOrNull(room.member!!.id!!)?.isActive ?: false
|
||||
var isActiveRoulette = false
|
||||
val rouletteList = rouletteRepository.findByCreatorId(creatorId = room.member!!.id!!)
|
||||
|
||||
for (roulette in rouletteList) {
|
||||
if (roulette.isActive) {
|
||||
isActiveRoulette = true
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
val donationRankingTop3UserIds = if (room.member!!.isVisibleDonationRank) {
|
||||
explorerQueryRepository
|
||||
|
|
Loading…
Reference in New Issue