make content repo creating content more readable

This commit is contained in:
InsanusMokrassar 2020-12-01 13:18:39 +06:00
parent ed46c888e3
commit 703f3c057c
2 changed files with 8 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -61,10 +61,13 @@ class BusinessWriteContentRepo(
return values.mapNotNull { content ->
if (content is OtherContentLinkContent) {
adapters.forEach {
return@mapNotNull RegisteredContent(
content.otherId,
it.getContent(content.otherId) ?: return@forEach
)
val existsContent = it.getContent(content.otherId)
if (existsContent != null) {
return@mapNotNull RegisteredContent(
content.otherId,
existsContent
)
}
}
}
val contentId = generateContentId()