From 0a366a4ae4dca12868e9a11e53c122c47596e89f Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Tue, 5 Feb 2013 19:39:20 +0100 Subject: [PATCH] sectionsd: on-disk epg data has lower priority than on-air data Signed-off-by: Jacek Jendrzej --- src/eitd/xmlutil.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/eitd/xmlutil.cpp b/src/eitd/xmlutil.cpp index b700011f3..44dd9c033 100644 --- a/src/eitd/xmlutil.cpp +++ b/src/eitd/xmlutil.cpp @@ -1,6 +1,6 @@ /* * (C) 2001 by fnbrd, - * Copyright (C) 2008, 2009 Stefan Seyfried + * Copyright (C) 2008-2009, 2012-2013 Stefan Seyfried * * Copyright (C) 2011-2012 CoolStream International Ltd * @@ -321,6 +321,7 @@ void *insertEventsfromFile(void * data) uint8_t tid = xmlGetNumericAttribute(event, "tid", 16); if(tid) e.table_id = tid; + e.table_id |= 0x80; /* make sure on-air data has a lower table_id */ node = event->xmlChildrenNode;