mirror of
				https://github.com/recloudstream/cloudstream.git
				synced 2024-08-15 01:53:11 +00:00 
			
		
		
		
	Fix uprot.net (#251)
Fix regex for upront.net it was giving the wrong url.
This commit is contained in:
		
							parent
							
								
									495d02d583
								
							
						
					
					
						commit
						6246d984a1
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -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 | ||||
|     } | ||||
| } | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue