Skip to content

Commit

Permalink
minus
Browse files Browse the repository at this point in the history
  • Loading branch information
Yush0DAN committed Oct 23, 2024
1 parent 301a60d commit 120ebbc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Hentaila : ConfigurableAnimeSource, AnimeHttpSource() {
}
}

override fun popularAnimeRequest(page: Int) = GET("$baseUrl", headers)
override fun popularAnimeRequest(page: Int) = GET(baseUrl, headers)

override fun popularAnimeParse(response: Response): AnimesPage {
val document = response.asJsoup()
Expand All @@ -88,7 +88,7 @@ class Hentaila : ConfigurableAnimeSource, AnimeHttpSource() {
return AnimesPage(animes, false)
}

override fun latestUpdatesRequest(page: Int) = GET("$baseUrl", headers)
override fun latestUpdatesRequest(page: Int) = GET(baseUrl, headers)

override fun latestUpdatesParse(response: Response): AnimesPage {
val document = response.asJsoup()
Expand Down

0 comments on commit 120ebbc

Please sign in to comment.