mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-20 04:29:18 +01:00
Fix dot seperator showing in reader chapters list when theres no scanlator
This commit is contained in:
parent
c43b36768c
commit
db5e6f9216
@ -50,7 +50,7 @@ class ReaderChapterItem(val chapter: Chapter, val manga: Manga, val isCurrent: B
|
||||
|
||||
val statuses = mutableListOf<String>()
|
||||
ChapterUtil.relativeDate(item)?.let { statuses.add(it) }
|
||||
item.scanlator?.isNotBlank()?.let { statuses.add(item.scanlator ?: "") }
|
||||
item.scanlator?.takeIf { it.isNotBlank() }?.let { statuses.add(item.scanlator ?: "") }
|
||||
|
||||
if (item.isCurrent) {
|
||||
binding.chapterTitle.setTypeface(null, Typeface.BOLD_ITALIC)
|
||||
|
Loading…
Reference in New Issue
Block a user