You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The URL in popularAnimeRequest at line 41 needs fixing:
// ============================== Popular ===============================overridefunpopularAnimeRequest(page:Int) =GET("$baseUrl/anime?page=$page")
Update it to:
// ============================== Popular ===============================overridefunpopularAnimeRequest(page:Int) =GET("$baseUrl/anime?order_by=most_viewed&page=$page")
I've checked that the HTML tags and attributes are all good until:
// ============================== Episodes ==============================overridefunepisodeListParse(response:Response): List<SEpisode> {
val document = response.asJsoup()
val html = document.selectFirst(episodeListSelector())?.attr("data-content")
?:return emptyList()
val newDoc = response.asJsoup(html)
val limits = newDoc.select("a.btn-secondary")
I didn't bother checking past val limits as I thought, if I could somehow get the popular/latest list, or the search queries first that would be the first step (which I failed in obv).
I got no clue if it's the site acting up, or some library messing up, or the wrong implementation of libraries (which doesn't seem the case to me).
YOU WOULD NEED TO DO PROPER DEBUGGING (which i didn't)
Source information
kuramanime 14.13 (Indonesia)
Source language
Indonesia
Steps to reproduce
1.Open the kuramanime extension
2.And it shows no results found
Expected behavior
It should show anime
Actual behavior
Shows only results not found
Aniyomi version
0.16.4.3
Android version
13
Other details
Acknowledgements
The text was updated successfully, but these errors were encountered: