Add support to update strategy. (#6)

This commit is contained in:
Alessandro Jean 2022-09-25 11:14:34 -03:00 committed by GitHub
parent c5575838fb
commit c6f42599fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,8 @@ interface SManga {
var thumbnail_url: String?
var update_strategy: UpdateStrategy
var initialized: Boolean
companion object {

View File

@ -0,0 +1,6 @@
package eu.kanade.tachiyomi.source.model
enum class UpdateStrategy {
ALWAYS_UPDATE,
ONLY_FETCH_ONCE
}