Skip to content

Commit

Permalink
fix(es/pelisforte): Change domain and fix http 404 error (#3265)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dark25 authored May 26, 2024
1 parent 9f87d46 commit 995f782
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/es/pelisforte/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'PelisForte'
extClass = '.PelisForte'
extVersionCode = 14
extVersionCode = 15
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 995f782

Please sign in to comment.