Compare commits

..

No commits in common. "8e7e77067a3efd560058da50b5b6b6f99298c424" and "9899390b613827d30fdac77a72bbc8d9b13dc1c4" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

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

View File

@ -272,7 +272,7 @@ class CreatorCommunityService(
duration.toMinutes() < 60 -> "${duration.toMinutes()}분전" duration.toMinutes() < 60 -> "${duration.toMinutes()}분전"
duration.toHours() < 24 -> "${duration.toHours()}시간전" duration.toHours() < 24 -> "${duration.toHours()}시간전"
duration.toDays() < 30 -> "${duration.toDays()}일전" duration.toDays() < 30 -> "${duration.toDays()}일전"
duration.toDays() < 365 -> "${duration.toDays() / 30}개월" duration.toDays() < 365 -> "${duration.toDays() / 30}분전"
else -> "${duration.toDays() / 365}년전" else -> "${duration.toDays() / 365}년전"
} }
} }