test #27

Merged
klaus merged 4 commits from test into main 2023-08-31 08:37:43 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 1ba3cb6277 - Show all commits

View File

@ -14,7 +14,7 @@ class LiveRecommendService(
fun getRecommendLive(member: Member): List<GetRecommendLiveResponse> {
return repository.getRecommendLive(
memberId = member.id!!,
isBlocked = { !blockMemberRepository.isBlocked(blockedMemberId = member.id!!, memberId = it) },
isBlocked = { blockMemberRepository.isBlocked(blockedMemberId = member.id!!, memberId = it) },
isAdult = member.auth != null
)
}