Compare commits

..

No commits in common. "8f50d05906d6d95e4116fdfbf498fa49300c0fe2" and "6aec31711dde4767545e6966816d3985e7fb47bc" have entirely different histories.

2 changed files with 1 additions and 7 deletions

View File

@ -113,9 +113,6 @@ class LiveRecommendRepository(
.orderBy(Expressions.numberTemplate(Double::class.java, "function('rand')").asc())
.limit(limit)
.fetch()
.asSequence()
.filter { !isBlocked(it.creatorId) }
.toList()
}
fun getOnAirFollowingChannelList(
@ -191,9 +188,6 @@ class LiveRecommendRepository(
.orderBy(Expressions.numberTemplate(Double::class.java, "function('rand')").asc())
.limit(limit)
.fetch()
.asSequence()
.filter { !isBlocked(it.creatorId) }
.toList()
}
fun getCreatorFollowingAllListTotalCount(memberId: Long, isBlocked: (Long) -> Boolean): Int {

View File

@ -376,7 +376,7 @@ class MemberService(
)
if (blockMember != null) {
blockMember.isActive = false
blockMember.isActive = true
}
}