summaryrefslogtreecommitdiff
path: root/eit2.c
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-10-31 00:35:45 +0100
committerDimitar Petrovski <dimeptr@gmail.com>2012-10-31 00:35:45 +0100
commit250c584c8b52ca6fadc75acc1f8f9e6c2830c014 (patch)
treee8688698a3ab3f30e3f22a86e2c67ec162584273 /eit2.c
parentfabd731b78f9c221cb6f6090308005835d09d67d (diff)
downloadvdr-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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/eit2.c b/eit2.c
index 87064c5..3980dba 100644
--- a/eit2.c
+++ b/eit2.c
@@ -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);
}