aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/StreamService.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-18 13:28:37 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-18 13:28:37 +0000
commitab72a335f18ee6a55e8f0a81235a614817c9e874 (patch)
tree0e979c3a30ff2c0c2ad67fe9e31fb803dbcac0ca /lib/python/Components/Sources/StreamService.py
parent19c32524a2abd9aa03fcb8f84103301e9410f1c0 (diff)
downloadenigma2-ab72a335f18ee6a55e8f0a81235a614817c9e874.tar.gz
enigma2-ab72a335f18ee6a55e8f0a81235a614817c9e874.zip
revert non working code
Diffstat (limited to 'lib/python/Components/Sources/StreamService.py')
-rw-r--r--lib/python/Components/Sources/StreamService.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/python/Components/Sources/StreamService.py b/lib/python/Components/Sources/StreamService.py
index 4f4e78e8..ac8db34d 100644
--- a/lib/python/Components/Sources/StreamService.py
+++ b/lib/python/Components/Sources/StreamService.py
@@ -1,6 +1,6 @@
from Source import Source
from Components.Element import cached
-from enigma import eServiceReference, getBestPlayableServiceReference
+from enigma import eServiceReference
class StreamService(Source):
def __init__(self, navcore):
@@ -30,10 +30,6 @@ class StreamService(Source):
def execBegin(self):
print "StreamService execBegin", self.ref.toString()
- if self.ref.flags & eServiceReference.isGroup:
- playref = getBestPlayableServiceReference(self.ref, eServiceReference())
- if playref:
- self.ref = playref
self.__service = self.navcore.recordService(self.ref)
self.navcore.record_event.append(self.recordEvent)
if self.__service is not None: