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 {
|
} else {
|
||||||
getString(R.string.page_, page.number)
|
getString(R.string.page_, page.number)
|
||||||
}
|
}
|
||||||
val text = "${manga.title}: ${getString(
|
val text = "${manga.title}: ${if (chapter.isRecognizedNumber) {
|
||||||
R.string.chapter_,
|
getString(R.string.chapter_, decimalFormat.format(chapter.chapter_number))
|
||||||
decimalFormat.format(chapter.chapter_number),
|
} else {
|
||||||
)}, $pageNumber"
|
chapter.name
|
||||||
|
}
|
||||||
|
}, $pageNumber"
|
||||||
|
|
||||||
val stream = file.getUriCompat(this)
|
val stream = file.getUriCompat(this)
|
||||||
val intent = Intent(Intent.ACTION_SEND).apply {
|
val intent = Intent(Intent.ACTION_SEND).apply {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue