disabilitato streamtime
This commit is contained in:
@@ -97,7 +97,7 @@ def search(item, text):
|
|||||||
except:
|
except:
|
||||||
import sys
|
import sys
|
||||||
for line in sys.exc_info():
|
for line in sys.exc_info():
|
||||||
log('search log:', line)
|
support.log('search log:', line)
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def newest(categoria):
|
def newest(categoria):
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ def search(item, text):
|
|||||||
except:
|
except:
|
||||||
import sys
|
import sys
|
||||||
for line in sys.exc_info():
|
for line in sys.exc_info():
|
||||||
log('search log:', line)
|
support.log('search log:', line)
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def newest(categoria):
|
def newest(categoria):
|
||||||
|
|||||||
@@ -29,10 +29,15 @@ def mainlist(item):
|
|||||||
|
|
||||||
|
|
||||||
def search(item, text):
|
def search(item, text):
|
||||||
logger.info("[vedohd.py] " + item.url + " search " + text)
|
logger.info()
|
||||||
item.url = item.url + "/?s=" + text
|
item.url = item.url + "/?s=" + text
|
||||||
|
try:
|
||||||
return support.dooplay_search(item)
|
return support.dooplay_search(item)
|
||||||
|
except:
|
||||||
|
import sys
|
||||||
|
for line in sys.exc_info():
|
||||||
|
logger.error("%s" % line)
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
def peliculas(item):
|
def peliculas(item):
|
||||||
|
|||||||
@@ -38,8 +38,13 @@ def mainlist(item):
|
|||||||
def search(item, text):
|
def search(item, text):
|
||||||
support.log("[streamingaltadefinizione.py] " + item.url + " search " + text)
|
support.log("[streamingaltadefinizione.py] " + item.url + " search " + text)
|
||||||
item.url = item.url + "/?s=" + text
|
item.url = item.url + "/?s=" + text
|
||||||
|
try:
|
||||||
return support.dooplay_search(item)
|
return support.dooplay_search(item)
|
||||||
|
except:
|
||||||
|
import sys
|
||||||
|
for line in sys.exc_info():
|
||||||
|
support.logger.error("%s" % line)
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
@support.scrape
|
@support.scrape
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"id": "streamtime",
|
"id": "streamtime",
|
||||||
"name": "StreamTime",
|
"name": "StreamTime",
|
||||||
"language": ["ita"],
|
"language": ["ita"],
|
||||||
"active": true,
|
"active": false,
|
||||||
"adult": false,
|
"adult": false,
|
||||||
"thumbnail": "streamtime.png",
|
"thumbnail": "streamtime.png",
|
||||||
"banner": "streamtime.png",
|
"banner": "streamtime.png",
|
||||||
|
|||||||
Reference in New Issue
Block a user