mirror of
https://github.com/Jacekun/cs3xxx-repo.git
synced 2024-08-14 23:57:09 +00:00
Optimizations and minor fixes.
This commit is contained in:
parent
2ccc4cec3a
commit
cf707a8cd0
12 changed files with 102 additions and 121 deletions
|
@ -179,8 +179,8 @@ class OpJav : MainAPI() {
|
|||
)
|
||||
app.post("$mainUrl/ajax", headers = ajaxHead, data = ajaxData)
|
||||
.document.select("iframe").forEach { iframe ->
|
||||
val serverLink = iframe?.attr("src")?.trim()
|
||||
if (!serverLink.isNullOrBlank()) {
|
||||
val serverLink = iframe?.attr("src")?.trim().orEmpty()
|
||||
if (serverLink.isNotBlank()) {
|
||||
watchlink.add(serverLink)
|
||||
Log.i(this.name, "Result => (serverLink) $serverLink")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue