mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-04 08:35:07 +01:00
Hide upload date if not parsed
This commit is contained in:
parent
b27669ee32
commit
af20c613a4
@ -1,7 +1,6 @@
|
|||||||
package eu.kanade.tachiyomi.ui.manga.chapter
|
package eu.kanade.tachiyomi.ui.manga.chapter
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.support.v4.content.ContextCompat
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.widget.PopupMenu
|
import android.widget.PopupMenu
|
||||||
import eu.kanade.tachiyomi.R
|
import eu.kanade.tachiyomi.R
|
||||||
@ -46,8 +45,12 @@ class ChaptersHolder(private val view: View, private val adapter: ChaptersAdapte
|
|||||||
chapter_title.text = name
|
chapter_title.text = name
|
||||||
chapter_title.setTextColor(if (chapter.read) readColor else unreadColor)
|
chapter_title.setTextColor(if (chapter.read) readColor else unreadColor)
|
||||||
|
|
||||||
|
if (chapter.date_upload > 0) {
|
||||||
chapter_date.text = df.format(Date(chapter.date_upload))
|
chapter_date.text = df.format(Date(chapter.date_upload))
|
||||||
chapter_date.setTextColor(if (chapter.read) readColor else unreadColor)
|
chapter_date.setTextColor(if (chapter.read) readColor else unreadColor)
|
||||||
|
} else {
|
||||||
|
chapter_date.text = ""
|
||||||
|
}
|
||||||
|
|
||||||
if (!chapter.read && chapter.last_page_read > 0) {
|
if (!chapter.read && chapter.last_page_read > 0) {
|
||||||
chapter_pages.text = context.getString(R.string.chapter_progress, chapter.last_page_read + 1)
|
chapter_pages.text = context.getString(R.string.chapter_progress, chapter.last_page_read + 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user