mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
parent
141658bda5
commit
6bdc1948fc
1 changed files with 6 additions and 4 deletions
|
@ -1452,10 +1452,12 @@ class ReaderActivity : BaseRxActivity<ReaderPresenter>() {
|
|||
} else {
|
||||
getString(R.string.page_, page.number)
|
||||
}
|
||||
val text = "${manga.title}: ${getString(
|
||||
R.string.chapter_,
|
||||
decimalFormat.format(chapter.chapter_number),
|
||||
)}, $pageNumber"
|
||||
val text = "${manga.title}: ${if (chapter.isRecognizedNumber) {
|
||||
getString(R.string.chapter_, decimalFormat.format(chapter.chapter_number))
|
||||
} else {
|
||||
chapter.name
|
||||
}
|
||||
}, $pageNumber"
|
||||
|
||||
val stream = file.getUriCompat(this)
|
||||
val intent = Intent(Intent.ACTION_SEND).apply {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue