Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
Fix incorrect label in auto-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
NerdNumber9 committed Aug 9, 2019
1 parent 9c70e69 commit 8a7f8c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class MigrationProcedureAdapter(val controller: MigrationProcedureController,
val lastUpdate = Date(mangaChapters.maxBy { it.date_upload }?.date_upload ?: 0)

if (latestChapter > 0f) {
manga_last_chapter.text = DecimalFormat("#.#").format(count)
manga_last_chapter.text = DecimalFormat("#.#").format(latestChapter)
} else {
manga_last_chapter.setText(R.string.unknown)
}
Expand Down

0 comments on commit 8a7f8c4

Please sign in to comment.