fix(es/pelisforte): Change domain and fix http 404 error (#3265)

This commit is contained in:
Dark25 2024-05-26 07:53:05 +02:00 committed by GitHub
parent 9f87d46d04
commit 995f782f89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'PelisForte'
extClass = '.PelisForte'
extVersionCode = 14
extVersionCode = 15
}
apply from: "$rootDir/common.gradle"

View File

@ -37,7 +37,7 @@ open class PelisForte : ConfigurableAnimeSource, AnimeHttpSource() {
override val name = "PelisForte"
override val baseUrl = "https://pelisforte.nu"
override val baseUrl = "https://www1.pelisforte.se"
override val lang = "es"
@ -65,7 +65,7 @@ open class PelisForte : ConfigurableAnimeSource, AnimeHttpSource() {
)
}
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/ultimas-peliculas/page/$page", headers)
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/todas-las-peliculas/page/$page", headers)
override fun popularAnimeParse(response: Response): AnimesPage {
val document = response.asJsoup()