test #129

Merged
klaus merged 2 commits from test into main 2024-02-12 07:53:27 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 18f53df9f8 - Show all commits

View File

@ -56,6 +56,9 @@ class AudioContentMainService(
offset = pageable.offset,
limit = pageable.pageSize.toLong()
)
.asSequence()
.filter { !blockMemberRepository.isBlocked(blockedMemberId = member.id!!, memberId = it.creatorId) }
.toList()
return GetNewContentAllResponse(totalCount, items)
}