X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2FSystemPlugins%2FFastChannelChange%2Fplugin.py;fp=lib%2Fpython%2FPlugins%2FSystemPlugins%2FFastChannelChange%2Fplugin.py;h=cc19a78d7ebbf259a7920317e180c967e17e5392;hp=7c3b2ccbe9e59d119314ebed294e5e7a2291ca7f;hb=058f865537c76130afe706080f5087b5ff0d6a97;hpb=da4e5045bfbe6faa22cd15f7bbb99cccd4f625de diff --git a/lib/python/Plugins/SystemPlugins/FastChannelChange/plugin.py b/lib/python/Plugins/SystemPlugins/FastChannelChange/plugin.py index 7c3b2cc..cc19a78 100644 --- a/lib/python/Plugins/SystemPlugins/FastChannelChange/plugin.py +++ b/lib/python/Plugins/SystemPlugins/FastChannelChange/plugin.py @@ -233,10 +233,13 @@ class FCCSupport: if isinstance(sref, str): sref = eServiceReference(sref) - if sref.getPath(): # is PVR? or streaming? + if sref.type != 1: playable = False - if int(sref.getData(0)) in (2, 10): # is RADIO? + elif sref.getPath(): # is PVR? or streaming? + playable = False + + elif int(sref.getData(0)) in (2, 10): # is RADIO? playable = False return playable