From fdb6f80a93867b9172223f7949d78b385aaf424a Mon Sep 17 00:00:00 2001 From: ghost Date: Tue, 27 Jan 2009 20:58:37 +0100 Subject: [PATCH 1/1] take care of simulte flag for getBestPlayableService (thx to adenin) --- lib/python/enigma_python.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2