mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-13 00:55:08 +01:00
Fixed #323
This commit is contained in:
parent
d3584fcc4f
commit
10d6a04051
@ -146,10 +146,10 @@ class MangaHeaderHolder(
|
|||||||
)
|
)
|
||||||
else manga_genres_tags.setTags(emptyList())
|
else manga_genres_tags.setTags(emptyList())
|
||||||
|
|
||||||
if (manga.author == manga.artist || manga.artist.isNullOrBlank()) manga_author.text =
|
if (manga.author == manga.artist || manga.artist.isNullOrBlank()) {
|
||||||
manga.author?.trim()
|
manga_author.text = manga.author?.trim()
|
||||||
else {
|
} else {
|
||||||
manga_author.text = "${manga.author?.trim()}, ${manga.artist}"
|
manga_author.text = listOfNotNull(manga.author?.trim(), manga.artist?.trim()).joinToString(", ")
|
||||||
}
|
}
|
||||||
manga_summary.text =
|
manga_summary.text =
|
||||||
if (manga.description.isNullOrBlank()) itemView.context.getString(R.string.no_description)
|
if (manga.description.isNullOrBlank()) itemView.context.getString(R.string.no_description)
|
||||||
|
Loading…
Reference in New Issue
Block a user