diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 09:51:17 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 09:51:17 +0200 |
commit | 970976d2758c659dc41ffabf9bc9b160c8fbc29b (patch) | |
tree | d9563c8e4d5018dae924b4b1355933b668c9b951 /epghandler.c | |
parent | 4e51e3a4c2b3006f8ce760ebcdc424b9c7a3eeb4 (diff) | |
parent | d7dc6141c91b48c410e9cc5734ca9a2adecc278e (diff) | |
download | vdr-plugin-eepg-970976d2758c659dc41ffabf9bc9b160c8fbc29b.tar.gz vdr-plugin-eepg-970976d2758c659dc41ffabf9bc9b160c8fbc29b.tar.bz2 |
Merge branch 'master' into experimental
Diffstat (limited to 'epghandler.c')
-rw-r--r-- | epghandler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epghandler.c b/epghandler.c index 8302cdc..f7a5598 100644 --- a/epghandler.c +++ b/epghandler.c @@ -41,9 +41,9 @@ bool cEEpgHandler::HandleEitEvent(cSchedule* Schedule, int nid = schedule->ChannelID().Nid(); if ((nid >= 0x1001 && nid <= 0x100B) || nid == 0x101 || nid == 0x100) { //Set the Format for Eit events so that the new lines are not erased with FixEpgBugs - if (Format != DISH_BEV) Format = DISH_BEV; + EFormat Format = DISH_BEV; - SI::cEIT2 eit2(Schedule); + SI::cEIT2 eit2(Schedule, Format); eit2.ProcessEitEvent(Schedule, EitEvent, TableID, Version); return true; } |