Skip to content

Commit

Permalink
Fix yugen search
Browse files Browse the repository at this point in the history
  • Loading branch information
fakeyatogod committed Sep 2, 2023
1 parent d140497 commit 2fd3b7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class YugenSource : AnimeSource {

override suspend fun searchAnime(searchedText: String) = withContext(Dispatchers.IO) {
val animeList = arrayListOf<SimpleAnime>()
val searchUrl = "$mainUrl/search/?q=${searchedText}"
val searchUrl = "$mainUrl/discover/?q=${searchedText}"

val doc = getJsoup(searchUrl)
val allInfo = doc.getElementsByClass("anime-meta")
Expand Down

0 comments on commit 2fd3b7b

Please sign in to comment.