CatManga: Remember currentTimeMillis when a chapter is found for the first time (#6508)

This prevents manga entries without any new chapter from getting
bumped to the top of "Latest chapter" list when the library is updated.
This commit is contained in:
Ivan Iskandar 2021-04-12 18:38:34 +07:00 committed by GitHub
parent 08fae6c104
commit 50859e76aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 4 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'CatManga'
pkgNameSuffix = "en.catmanga"
extClass = '.CatManga'
extVersionCode = 1
extVersionCode = 2
libVersion = '1.2'
}

View File

@ -1,5 +1,6 @@
package eu.kanade.tachiyomi.extension.en.catmanga
import android.app.Application
import eu.kanade.tachiyomi.network.GET
import eu.kanade.tachiyomi.network.asObservableSuccess
import eu.kanade.tachiyomi.source.model.FilterList
@ -14,6 +15,8 @@ import org.json.JSONArray
import org.json.JSONObject
import org.jsoup.nodes.Document
import rx.Observable
import uy.kohesive.injekt.Injekt
import uy.kohesive.injekt.api.get
class CatManga : HttpSource() {
@ -92,10 +95,12 @@ class CatManga : HttpSource() {
val querySeries = jsonObject.getJSONObject("query").getString("series")
val seriesUrl = jsonObject.getString("page").replace("[series]", querySeries)
val seriesPrefs = Injekt.get<Application>().getSharedPreferences("source_${id}_time_found:$querySeries", 0)
val seriesPrefsEditor = seriesPrefs.edit()
val series = jsonObject.getJSONObject("props").getJSONObject("pageProps").getJSONObject("series")
val chapters = series.getJSONArray("chapters")
return (0 until chapters.length()).map { i ->
val list = (0 until chapters.length()).reversed().map { i ->
val chapter = chapters.getJSONObject(i)
val title = chapter.optString("title")
val groups = chapter.getJSONArray("groups").joinToString()
@ -106,9 +111,19 @@ class CatManga : HttpSource() {
chapter_number = number.toFloat()
name = "Chapter $displayNumber" + if (title.isNotBlank()) " - $title" else ""
scanlator = groups
date_upload = System.currentTimeMillis()
// Save current time when a chapter is found for the first time, and reuse it on future checks to
// prevent manga entry without any new chapter bumped to the top of "Latest chapter" list
// when the library is updated.
val currentTimeMillis = System.currentTimeMillis()
if (!seriesPrefs.contains(number)) {
seriesPrefsEditor.putLong(number, currentTimeMillis)
}
}.reversed()
date_upload = seriesPrefs.getLong(number, currentTimeMillis)
}
}
seriesPrefsEditor.apply()
return list
}
override fun pageListParse(response: Response): List<Page> {