diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-31 00:35:45 +0100 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-31 00:35:45 +0100 |
commit | 250c584c8b52ca6fadc75acc1f8f9e6c2830c014 (patch) | |
tree | e8688698a3ab3f30e3f22a86e2c67ec162584273 /eit2.c | |
parent | fabd731b78f9c221cb6f6090308005835d09d67d (diff) | |
download | vdr-plugin-eepg-250c584c8b52ca6fadc75acc1f8f9e6c2830c014.tar.gz vdr-plugin-eepg-250c584c8b52ca6fadc75acc1f8f9e6c2830c014.tar.bz2 |
prevend FixEpgBugs for NA channels to keep formating
Diffstat (limited to 'eit2.c')
-rw-r--r-- | eit2.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -427,8 +427,10 @@ void cEIT2::ProcessEventDescriptors(bool ExternalData, int Source, // LogD(2, prep("ID: %d Title: %s Time: %d Tid: 0x%x"), pEvent->EventID(), pEvent->Title(), pEvent->StartTime(), pEvent->TableID()); // } - // if (!HasExternalData) - pEvent->FixEpgBugs (); + //FixEpgBugs removes newlines from description which is not wanted especially for DISH/BEV + if (Format != DISH_BEV) + pEvent->FixEpgBugs(); + if (LinkChannels) channel->SetLinkChannels (LinkChannels); } |