take care of simulte flag for getBestPlayableService (thx to adenin)
[enigma2.git] / lib / python / enigma_python.i
index 849363754f5d403864f22bbae79f7237fa73f1e4..bdf1b1441e68a566ec5c8f9513ffbbcdf7fd9d9d 100644 (file)
@@ -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;