2
1
Fork 1
mirror of https://github.com/yoyzo/arab synced 2024-08-15 03:15:00 +00:00

update movizland and akwam (#6)

* added more extractors and fixed movizland

* update movizland fushaar mycima shahed4u

* added moshada extractor

* fix akwam

* Revert "Update build.gradle.kts"

This reverts commit 0ac53c60c3.

* update MovizlandProvider
This commit is contained in:
Spoonge 2023-02-01 16:29:55 +01:00 committed by GitHub
parent 0ac53c60c3
commit cbd39e1c35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 43 additions and 282 deletions

View file

@ -1,4 +1,4 @@
version = 1
version = 2
cloudstream {
description = ""

View file

@ -77,9 +77,7 @@ class Akwam : MainAPI() {
override suspend fun load(url: String): LoadResponse {
val doc = app.get(url).document
val mesEl = doc.select("#downloads > h2 > span").isNotEmpty()
val mesSt = if(mesEl) true else false
val isMovie = mesSt//url.contains("/movie/")
val isMovie = doc.select("#downloads > h2 > span").isNotEmpty()//url.contains("/movie/")
val title = doc.select("h1.entry-title").text()
val posterUrl = doc.select("picture > img").attr("src")