mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
docs: Sync changelog
This commit is contained in:
parent
93738ffaa3
commit
bede8460e7
2 changed files with 5 additions and 1 deletions
|
@ -13,6 +13,9 @@
|
|||
- Sync DoH provider list with upstream (added Mullvad, Control D, Njalla, and Shecan)
|
||||
- Added option to enable verbose logging
|
||||
|
||||
## Changes
|
||||
- Enable 'Split Tall Images' by default (@Smol-Ame)
|
||||
|
||||
## Fixes
|
||||
- Fixed only few DoH provider is actually being used (Cloudflare, Google, AdGuard, and Quad9)
|
||||
- Fixed "Group by Ungrouped" showing duplicate entries
|
||||
|
@ -24,3 +27,4 @@
|
|||
- Even more SQLDelight migration effort
|
||||
- Update dependency com.android.tools:desugar_jdk_libs to v2.1.1
|
||||
- Update moko to v0.24.2
|
||||
- Refactor trackers to use DTOs (@MajorTanya)
|
||||
|
|
|
@ -79,7 +79,7 @@ fun updateTrackChapterMarkedAsRead(
|
|||
val newChapterRead = newLastChapter?.chapter_number ?: 0f
|
||||
|
||||
// To avoid unnecessary calls if multiple marked as read for same manga
|
||||
if (trackingJobs[mangaId]?.second ?: 0f < newChapterRead) {
|
||||
if ((trackingJobs[mangaId]?.second ?: 0f) < newChapterRead) {
|
||||
trackingJobs[mangaId]?.first?.cancel()
|
||||
|
||||
// We want these to execute even if the presenter is destroyed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue