diff --git a/channels/casacinemaInfo.py b/channels/casacinemaInfo.py index e2d9d4c9..96eb3f07 100644 --- a/channels/casacinemaInfo.py +++ b/channels/casacinemaInfo.py @@ -97,7 +97,7 @@ def search(item, text): except: import sys for line in sys.exc_info(): - log('search log:', line) + support.log('search log:', line) return [] def newest(categoria): diff --git a/channels/filmigratis.py b/channels/filmigratis.py index 284f381c..345e6ac0 100644 --- a/channels/filmigratis.py +++ b/channels/filmigratis.py @@ -126,7 +126,7 @@ def search(item, text): except: import sys for line in sys.exc_info(): - log('search log:', line) + support.log('search log:', line) return [] def newest(categoria): diff --git a/channels/netfreex.py b/channels/netfreex.py index ec192c87..16aea9ae 100644 --- a/channels/netfreex.py +++ b/channels/netfreex.py @@ -29,10 +29,15 @@ def mainlist(item): def search(item, text): - logger.info("[vedohd.py] " + item.url + " search " + text) + logger.info() item.url = item.url + "/?s=" + text - - return support.dooplay_search(item) + try: + return support.dooplay_search(item) + except: + import sys + for line in sys.exc_info(): + logger.error("%s" % line) + return [] def peliculas(item): diff --git a/channels/streamingaltadefinizione.py b/channels/streamingaltadefinizione.py index 408f93ce..06d4d8fc 100644 --- a/channels/streamingaltadefinizione.py +++ b/channels/streamingaltadefinizione.py @@ -38,8 +38,13 @@ def mainlist(item): def search(item, text): support.log("[streamingaltadefinizione.py] " + item.url + " search " + text) item.url = item.url + "/?s=" + text - - return support.dooplay_search(item) + try: + return support.dooplay_search(item) + except: + import sys + for line in sys.exc_info(): + support.logger.error("%s" % line) + return [] @support.scrape diff --git a/channels/streamtime.json b/channels/streamtime.json index 5b9e73a8..d5e51934 100644 --- a/channels/streamtime.json +++ b/channels/streamtime.json @@ -2,7 +2,7 @@ "id": "streamtime", "name": "StreamTime", "language": ["ita"], - "active": true, + "active": false, "adult": false, "thumbnail": "streamtime.png", "banner": "streamtime.png",