From b773579f14639b8695a70f86514f4bdbe9cb079a Mon Sep 17 00:00:00 2001 From: Glenn-1990 Date: Mon, 20 Jul 2015 21:44:19 +0200 Subject: [PATCH] workaround: playback of active recordings --- src/Tvheadend.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tvheadend.cpp b/src/Tvheadend.cpp index 385d0e41..2be71c1e 100644 --- a/src/Tvheadend.cpp +++ b/src/Tvheadend.cpp @@ -396,7 +396,8 @@ PVR_ERROR CTvheadend::GetRecordings ( ADDON_HANDLE handle ) } /* EPG event id */ - rec.iEpgEventId = rit->second.eventId; + /* workaround: causes high cpu usage */ + //rec.iEpgEventId = rit->second.eventId; recs.push_back(rec); }