FlowerMangaDotCom: Update domain (#3628)

* Update domain

* Remove unused import
This commit is contained in:
Chopper 2024-06-20 06:07:43 -03:00 committed by Draff
parent cd4ef71b1c
commit c2797eed13
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 5 additions and 6 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'FlowerManga.com'
extClass = '.FlowerMangaDotCom'
themePkg = 'madara'
baseUrl = 'https://flowermanga.com'
overrideVersionCode = 0
baseUrl = 'https://flowermangas.com'
overrideVersionCode = 1
isNsfw = true
}

View File

@ -5,16 +5,15 @@ import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class FlowerMangaDotCom : Madara(
"FlowerManga.com",
"https://flowermanga.com",
"https://flowermangas.com",
"pt-BR",
SimpleDateFormat("dd MMMMM yyyy", Locale("pt", "BR")),
SimpleDateFormat("dd MMM yyyy", Locale("pt", "BR")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.rateLimit(2)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never