Skip to content

Commit

Permalink
change domain and fix http 404 error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dark25 committed May 25, 2024
1 parent f57ba1d commit 3dea769
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 3dea769

Please sign in to comment.