- Nuova sezione Musica
- Download in Background
- Download dalla Videoteca e supporto file locali
- Backup e cancellazione della Videoteca
- Spostamento della Videoteca
- Migliorata integrazione con libreria di Kodi
- Gestione delle Viste Preferite
- Nuovo layout impostazioni
This commit is contained in:
marco
2020-04-15 22:58:06 +02:00
parent ecafd1b0df
commit 6de0f4fec4
213 changed files with 5294 additions and 2482 deletions
+3 -3
View File
@@ -2,9 +2,9 @@
# --------------------------------------------------------
# Conector jetload By Alfa development Group
# --------------------------------------------------------
import re
from core import httptools, jsontools
from core import httptools
from core import scrapertools
from platformcode import config
from platformcode import logger
video_urls = []
@@ -16,7 +16,7 @@ def test_video_exists(page_url):
global data
data = response.data
if not response.sucess or "Not Found" in data or "File was deleted" in data or "is no longer available" in data:
return False, "[jetload] El fichero no existe o ha sido borrado"
return False, config.get_localized_string(70449) % "jetload"
return True, ""