small fix

This commit is contained in:
InsanusMokrassar 2021-09-21 15:18:48 +06:00
parent 05b8d7738f
commit 60ae527dd0
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ val ResultData.froms: List<String>
get() = material ?.split(", ") ?: emptyList()
val ResultData.authors: List<String>
get() = creator ?.split(", ") ?: emptyList()
get() = (creator ?.split(", ") ?: emptyList()) + (memberName ?.split(", ") ?: emptyList())
val ResultData.charactersList: List<String>
get() = characters ?.split(", ") ?: emptyList()