mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 09:57:47 +01:00
Temporarily remove chapter name cleaning
To be added back in a more consistent manner later around the app. Probably when more things are Compose-y with less repetition.
This commit is contained in:
parent
2b76a97989
commit
c0214103a9
1 changed files with 3 additions and 1 deletions
|
@ -35,7 +35,9 @@ class ChapterHolder(
|
|||
val number = adapter.decimalFormat.format(chapter.chapter_number.toDouble())
|
||||
itemView.context.getString(R.string.display_mode_chapter, number)
|
||||
}
|
||||
else -> cleanChapterName(chapter, manga)
|
||||
else -> chapter.name
|
||||
// TODO: show cleaned name consistently around the app
|
||||
// else -> cleanChapterName(chapter, manga)
|
||||
}
|
||||
|
||||
// Set correct text color
|
||||
|
|
Loading…
Reference in a new issue