Fix uprot.net (#251)

Fix regex for upront.net it was giving the wrong url.
This commit is contained in:
contusionglory 2022-12-16 23:45:23 +00:00 committed by GitHub
parent 495d02d583
commit 6246d984a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ object ShortLink {
suspend fun unshortenUprot(uri: String): String {
val page = app.get(uri).text
Regex("""<a[^>]+href="([^"]+)""").findAll(page)
Regex("""<a[^>]+href="([^"]+)".*Continue""").findAll(page)
.map { it.value.replace("""<a href="""", "") }
.toList().forEach { link ->
if (link.contains("https://maxstream.video") || link.contains("https://uprot.net") && link != uri) {
@ -193,4 +193,4 @@ object ShortLink {
val doc = app.get(uri).document
return doc.selectFirst("iframe")?.attr("src")?.trim()?: uri
}
}
}