more minor fixes
This commit is contained in:
@ -225,7 +225,7 @@ class Anime4Up : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
|||||||
// Filter
|
// Filter
|
||||||
|
|
||||||
override fun getFilterList() = AnimeFilterList(
|
override fun getFilterList() = AnimeFilterList(
|
||||||
Filter.Header("الفلترات مش هتشتغل لو بتبحث او وهي فاضيه"),
|
AnimeFilter.Header("الفلترات مش هتشتغل لو بتبحث او وهي فاضيه"),
|
||||||
GenreList(genresName),
|
GenreList(genresName),
|
||||||
TypeList(typesName),
|
TypeList(typesName),
|
||||||
StatusList(statusesName),
|
StatusList(statusesName),
|
||||||
|
@ -50,7 +50,7 @@ class FASELHD : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
|||||||
val anime = SAnime.create()
|
val anime = SAnime.create()
|
||||||
anime.setUrlWithoutDomain(element.attr("href"))
|
anime.setUrlWithoutDomain(element.attr("href"))
|
||||||
anime.title = element.select("div.imgdiv-class img").attr("alt")
|
anime.title = element.select("div.imgdiv-class img").attr("alt")
|
||||||
//anime.thumbnail_url = element.select("div.imgdiv-class img").attr("data-src")
|
// anime.thumbnail_url = element.select("div.imgdiv-class img").attr("data-src")
|
||||||
|
|
||||||
return anime
|
return anime
|
||||||
}
|
}
|
||||||
|
@ -173,4 +173,3 @@ class GenoAnime : ParsedAnimeHttpSource() {
|
|||||||
return "https://dood$content"
|
return "https://dood$content"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@ import okhttp3.Request
|
|||||||
import okhttp3.Response
|
import okhttp3.Response
|
||||||
import org.jsoup.nodes.Document
|
import org.jsoup.nodes.Document
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
import org.jsoup.select.Elements
|
|
||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
import java.lang.Exception
|
import java.lang.Exception
|
||||||
@ -210,7 +209,7 @@ class OtakuDesu : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun videoFromElement(element: Element): Video {
|
override fun videoFromElement(element: Element): Video {
|
||||||
val res = client.newCall(GET(element.attr("href"))).execute().asJsoup()
|
val res = client.newCall(GET(element.attr("href"))).execute().asJsoup()
|
||||||
val scr = res.select("script:containsData(dlbutton)").html()
|
val scr = res.select("script:containsData(dlbutton)").html()
|
||||||
var url = element.attr("href").substringBefore("/v/")
|
var url = element.attr("href").substringBefore("/v/")
|
||||||
|
Reference in New Issue
Block a user