From: ghost Date: Tue, 27 Jan 2009 19:58:37 +0000 (+0100) Subject: take care of simulte flag for getBestPlayableService (thx to adenin) X-Git-Tag: 2.6.0~484 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/fdb6f80a93867b9172223f7949d78b385aaf424a?hp=09f66522e9f51ac8fc7921bd77ba36a9d9d3d4b3 take care of simulte flag for getBestPlayableService (thx to adenin) --- 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;