FlowerManga: Rename source (#3159)

* Raname source

* Fix name
This commit is contained in:
Chopper 2024-05-23 07:52:45 -03:00 committed by Draff
parent a8c69a300d
commit fd9d8d39f0
2 changed files with 8 additions and 5 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'Flower Manga' extName = 'FlowerManga.net'
extClass = '.FlowerManga' extClass = '.FlowerMangaDotNet'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://flowermanga.net' baseUrl = 'https://flowermanga.net'
overrideVersionCode = 1 overrideVersionCode = 2
isNsfw = true isNsfw = true
} }

View File

@ -7,12 +7,15 @@ import java.text.SimpleDateFormat
import java.util.Locale import java.util.Locale
import java.util.concurrent.TimeUnit import java.util.concurrent.TimeUnit
class FlowerManga : Madara( class FlowerMangaDotNet : Madara(
"Flower Manga", "FlowerManga.net",
"https://flowermanga.net", "https://flowermanga.net",
"pt-BR", "pt-BR",
SimpleDateFormat("d 'de' MMMMM 'de' yyyy", Locale("pt", "BR")), SimpleDateFormat("d 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
) { ) {
override val id = 2421010180391442293
override val client: OkHttpClient = super.client.newBuilder() override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS) .rateLimit(1, 2, TimeUnit.SECONDS)
.build() .build()