- Chiusura finestra server dopo standby

- Menu contestuale in finestra server
 - Piccoli fix deltabit e uqloads
 - Piccolo fix gestione viste
 - Fix gestione salva link
This commit is contained in:
Alhaziel01
2022-01-13 13:02:01 +01:00
parent a7a94eb20b
commit 29a5b2569e
7 changed files with 103 additions and 62 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ def test_video_exists(page_url):
data = page.data.replace('"', "'")
real_url = page.url
if "Not Found" in data or "File Does not Exist" in data:
if "Not Found" in data or "File Does not Exist" in data or "File doesn't exits" in data:
return False, config.get_localized_string(70449) % "DeltaBit"
return True, ""
+1 -1
View File
@@ -30,7 +30,7 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
matches = re.compile(patron, re.DOTALL).findall(data)
for url in matches:
url = url+'|Referer='+page_url
# url = url+'|Referer='+page_url
video_urls.append(["[uqload]", url])
return video_urls