Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Show last update if date > 0

Cette révision appartient à :
inorichi 2018-04-05 22:55:23 +02:00
Parent 69f51b88bf
révision f853610578

Voir le fichier

@ -261,7 +261,11 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
}
fun setLastUpdateDate(date: Date) {
manga_last_update?.text = DateFormat.getDateInstance(DateFormat.SHORT).format(date)
if (date.time != 0L) {
manga_last_update?.text = DateFormat.getDateInstance(DateFormat.SHORT).format(date)
} else {
manga_last_update?.text = resources?.getString(R.string.unknown)
}
}
/**