mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-09 19:55:11 +01:00
Fix blank scanlators showing a dot in manga details
This commit is contained in:
parent
1f707141a6
commit
cb025624eb
@ -72,7 +72,9 @@ class ChapterHolder(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
chapter.scanlator?.isNotBlank()?.let { statuses.add(chapter.scanlator!!) }
|
if (chapter.scanlator?.isNotBlank() == true) {
|
||||||
|
statuses.add(chapter.scanlator!!)
|
||||||
|
}
|
||||||
|
|
||||||
if (binding.frontView.translationX == 0f) {
|
if (binding.frontView.translationX == 0f) {
|
||||||
binding.read.setImageResource(
|
binding.read.setImageResource(
|
||||||
|
Loading…
Reference in New Issue
Block a user