aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-01-27 20:58:37 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-01-27 20:58:37 +0100
commitfdb6f80a93867b9172223f7949d78b385aaf424a (patch)
tree3b82c51ce70af7493f32f4a13db8004fae32431a /lib/python
parent09f66522e9f51ac8fc7921bd77ba36a9d9d3d4b3 (diff)
downloadenigma2-fdb6f80a93867b9172223f7949d78b385aaf424a.tar.gz
enigma2-fdb6f80a93867b9172223f7949d78b385aaf424a.zip
take care of simulte flag for getBestPlayableService (thx to adenin)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/enigma_python.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i
index 84936375..bdf1b144 100644
--- a/lib/python/enigma_python.i
+++ b/lib/python/enigma_python.i
@@ -288,7 +288,7 @@ PyObject *getBestPlayableServiceReference(const eServiceReference &bouquet_ref,
PyObject *getBestPlayableServiceReference(const eServiceReference &bouquet_ref, const eServiceReference &ignore, bool simulate=false)
{
eStaticServiceDVBBouquetInformation info;
- if (info.isPlayable(bouquet_ref, ignore))
+ if (info.isPlayable(bouquet_ref, ignore, simulate))
return New_eServiceReference(info.getPlayableService());
Py_INCREF(Py_None);
return Py_None;