From 223395035a757bc9d936ca563bd31d3e8402ae1b Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Fri, 9 Aug 2024 07:23:53 +0700 Subject: [PATCH] chore: Sync project --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- .github/ISSUE_TEMPLATE/issue_report.yml | 2 +- .../eu/kanade/tachiyomi/data/database/models/LibraryManga.kt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 6419d82137..9701387eaa 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -35,7 +35,7 @@ body: required: true - label: If this is an issue with an extension, or a request for an extension, I should be contacting the extensions repository's maintainer/support for help. required: true - - label: I have updated the app to version **[1.8.4.4](https://github.com/null2264/yokai/releases/latest)**. + - label: I have updated the app to version **[1.8.4.5](https://github.com/null2264/yokai/releases/latest)**. required: true - label: I have checked through the app settings for my feature. required: true diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.github/ISSUE_TEMPLATE/issue_report.yml index 0b0c212ec9..51ccf3cfbe 100644 --- a/.github/ISSUE_TEMPLATE/issue_report.yml +++ b/.github/ISSUE_TEMPLATE/issue_report.yml @@ -100,7 +100,7 @@ body: required: true - label: I have tried the [troubleshooting guide](https://mihon.app/help/). required: true - - label: I have updated the app to version **[1.8.4.4](https://github.com/null2264/yokai/releases/latest)**. + - label: I have updated the app to version **[1.8.4.5](https://github.com/null2264/yokai/releases/latest)**. required: true - label: I have updated all installed extensions. required: true diff --git a/app/src/main/java/eu/kanade/tachiyomi/data/database/models/LibraryManga.kt b/app/src/main/java/eu/kanade/tachiyomi/data/database/models/LibraryManga.kt index 47cebc65d8..f6044fc927 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/data/database/models/LibraryManga.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/data/database/models/LibraryManga.kt @@ -97,7 +97,7 @@ data class LibraryManga( this.update_strategy = updateStrategy.let(updateStrategyAdapter::decode) this.read = readCount.roundToInt() this.unread = maxOf((total - readCount).roundToInt(), 0) - this.totalChapters = readCount.roundToInt() + this.totalChapters = total.toInt() this.bookmarkCount = bookmarkCount.roundToInt() this.latestUpdate = latestUpdate this.lastRead = lastRead