uakino: drop logs

This commit is contained in:
CakesTwix 2023-03-03 13:05:23 +02:00
parent 50148bf881
commit 70e197c958
Signed by: CakesTwix
GPG key ID: 7B11051D5CE19825

View file

@ -1,6 +1,5 @@
package com.lagradost package com.lagradost
import android.util.Log
import com.lagradost.cloudstream3.* import com.lagradost.cloudstream3.*
import com.lagradost.cloudstream3.LoadResponse.Companion.addActors import com.lagradost.cloudstream3.LoadResponse.Companion.addActors
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
@ -89,7 +88,6 @@ class UakinoProvider : MainAPI() {
val actors = document.select("div.film-info > div:nth-child(6) a").map { it.text() } val actors = document.select("div.film-info > div:nth-child(6) a").map { it.text() }
val recommendations = document.select(".related-item").map { val recommendations = document.select(".related-item").map {
Log.d("load-debug", it.html())
it.toSearchResponse() it.toSearchResponse()
} }