docs: Sync changelog

This commit is contained in:
Ahmad Ansori Palembani 2024-09-03 10:29:25 +07:00
parent 93738ffaa3
commit bede8460e7
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
2 changed files with 5 additions and 1 deletions

View file

@ -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)

View file

@ -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