Fix Play da Ricerca Globale
This commit is contained in:
@@ -685,6 +685,10 @@ class SearchWindow(xbmcgui.WindowXML):
|
|||||||
try:
|
try:
|
||||||
self.channel = __import__('channels.%s' % item.channel, fromlist=["channels.%s" % item.channel])
|
self.channel = __import__('channels.%s' % item.channel, fromlist=["channels.%s" % item.channel])
|
||||||
self.itemsResult = getattr(self.channel, item.action)(item)
|
self.itemsResult = getattr(self.channel, item.action)(item)
|
||||||
|
if self.itemsResult and self.itemsResult[0].server:
|
||||||
|
from platformcode.launcher import findvideos
|
||||||
|
findvideos(self.item, self.itemsResult)
|
||||||
|
return
|
||||||
except:
|
except:
|
||||||
import traceback
|
import traceback
|
||||||
logger.error('error importing/getting search items of ' + item.channel)
|
logger.error('error importing/getting search items of ' + item.channel)
|
||||||
|
|||||||
Reference in New Issue
Block a user