mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
Applied PR changes
This commit is contained in:
parent
4956581cbc
commit
e52b320927
2 changed files with 39 additions and 51 deletions
|
@ -23,5 +23,5 @@ cloudstream {
|
|||
"AsianDrama",
|
||||
)
|
||||
|
||||
iconUrl = "https://www.google.com/s2/favicons?domain=pinoymovieshub.ph&sz=%size%"
|
||||
iconUrl = "https://www.google.com/s2/favicons?domain=www.pinoymovieshub.ph&sz=%size%"
|
||||
}
|
|
@ -3,7 +3,6 @@ package com.lagradost
|
|||
import android.util.Log
|
||||
import com.fasterxml.jackson.annotation.JsonProperty
|
||||
import com.lagradost.cloudstream3.*
|
||||
import com.lagradost.cloudstream3.mvvm.logError
|
||||
import com.lagradost.cloudstream3.utils.AppUtils
|
||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||
|
@ -23,7 +22,6 @@ class PinoyMoviesHub : MainAPI() {
|
|||
page: Int,
|
||||
request: MainPageRequest
|
||||
): HomePageResponse {
|
||||
val all = ArrayList<HomePageList>()
|
||||
val doc = app.get(mainUrl).document
|
||||
val rows = listOfNotNull(
|
||||
Pair("Suggestion", "div.items.featured"),
|
||||
|
@ -40,24 +38,20 @@ class PinoyMoviesHub : MainAPI() {
|
|||
val maindoc = doc.selectFirst("div.module")
|
||||
?.select("div.content.full_width_layout.full")
|
||||
|
||||
rows.forEach { pair ->
|
||||
val all = rows.mapNotNull { pair ->
|
||||
// Fetch row title
|
||||
val title = pair.first
|
||||
// Fetch list of items and map
|
||||
//Log.i(TAG, "Title => $title")
|
||||
maindoc?.select(pair.second)?.let { inner ->
|
||||
//Log.i(TAG, "inner => $inner")
|
||||
val results = inner.select("article").getResults(this.name)
|
||||
if (results.isNotEmpty()) {
|
||||
all.add(
|
||||
val results = maindoc?.select(pair.second)?.select("article").getResults(this.name)
|
||||
if (results.isEmpty()) {
|
||||
return@mapNotNull null
|
||||
}
|
||||
HomePageList(
|
||||
name = title,
|
||||
list = results,
|
||||
isHorizontalImages = false
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
return HomePageResponse(all)
|
||||
}
|
||||
|
@ -128,7 +122,6 @@ class PinoyMoviesHub : MainAPI() {
|
|||
callback: (ExtractorLink) -> Unit
|
||||
): Boolean {
|
||||
|
||||
try {
|
||||
//Log.i(TAG, "Loading ajax request..")
|
||||
val requestLink = "${mainUrl}/wp-admin/admin-ajax.php"
|
||||
val action = "doo_player_ajax"
|
||||
|
@ -161,11 +154,6 @@ class PinoyMoviesHub : MainAPI() {
|
|||
)
|
||||
}
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
//Log.i(TAG, "Error => $e")
|
||||
logError(e)
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue