diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-01-13 16:18:40 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-01-13 16:18:40 +0100 |
commit | 21f13f0ef178bf48e4b609e75e42e74f8e940fe8 (patch) | |
tree | fc48bf793a9dfc334820f8c10edd982d576351c0 /eit.c | |
parent | 08390642c8b1f8ab76e8c9322ab96b28aef9ae82 (diff) | |
download | vdr-21f13f0ef178bf48e4b609e75e42e74f8e940fe8.tar.gz vdr-21f13f0ef178bf48e4b609e75e42e74f8e940fe8.tar.bz2 |
Removed EPGBugfixLevel '3'
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -16,7 +16,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: eit.c 1.30 2001/12/01 14:33:04 kls Exp $ + * $Id: eit.c 1.31 2002/01/13 16:14:31 kls Exp $ ***************************************************************************/ #include "eit.h" @@ -473,22 +473,6 @@ void cEventInfo::FixEpgBugs(void) strreplace(pTitle, '`', '\''); strreplace(pSubtitle, '`', '\''); strreplace(pExtendedDescription, '`', '\''); - - if (Setup.EPGBugfixLevel <= 2) - return; - - // Pro7 and Kabel1 apparently are unable to use a calendar/clock, - // because all events between 00:00 and 06:00 have the date of the - // day before (sometimes even this correction doesn't help). - // Channels are recognized by their ServiceID, which may only work - // correctly on the ASTRA satellite system. - if (uServiceID == 898 // Pro-7 - || uServiceID == 899) { // Kabel 1 - struct tm tm_r; - tm *t = localtime_r(&tTime, &tm_r); - if (t->tm_hour * 3600 + t->tm_min * 60 + t->tm_sec <= 6 * 3600) - tTime += 24 * 3600; - } } } |