diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 10:05:33 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 10:05:33 +0200 |
commit | 7342e5ac9ca1512c2a89aeffe897eefe65e10c58 (patch) | |
tree | aa5d6a2169a8323fc90411a87a60ed6c2a6f494d /epghandler.c | |
parent | 809d08939391b0f3db93b28cf59bc3da137ff006 (diff) | |
parent | 0223b8b98276b3f1c935325c9dcdf9b6484eb136 (diff) | |
download | vdr-plugin-eepg-7342e5ac9ca1512c2a89aeffe897eefe65e10c58.tar.gz vdr-plugin-eepg-7342e5ac9ca1512c2a89aeffe897eefe65e10c58.tar.bz2 |
Merge branch 'experimental' into freeview_test
Diffstat (limited to 'epghandler.c')
-rw-r--r-- | epghandler.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/epghandler.c b/epghandler.c index bc068af..90c8434 100644 --- a/epghandler.c +++ b/epghandler.c @@ -41,10 +41,11 @@ bool cEEpgHandler::HandleEitEvent(cSchedule* Schedule, int nid = schedule->ChannelID().Nid(); if ((nid >= 0x1001 && nid <= 0x100B) || nid == 0x101 || nid == 0x100 || nid == 0x233A) { //Set the Format for Eit events so that the new lines are not erased with FixEpgBugs + EFormat Format = DISH_BEV; if (nid == 0x233A) Format = FREEVIEW; - else if (Format != DISH_BEV) Format = DISH_BEV; + else Format = DISH_BEV; - SI::cEIT2 eit2(Schedule); + SI::cEIT2 eit2(Schedule, Format); eit2.ProcessEitEvent(Schedule, EitEvent, TableID, Version); return true; } |