summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parse.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/parse.cpp b/parse.cpp
index b3bfe1e..050136e 100644
--- a/parse.cpp
+++ b/parse.cpp
@@ -575,6 +575,18 @@ bool cParse::FetchEvent(xmlNodePtr enode, bool useeptext)
{
// info about subtitles -> just ignore (till now)
}
+ else if ((!xmlStrcasecmp(node->name, (const xmlChar *) "new")))
+ {
+ // info if it's new -> just ignore (till now)
+ }
+ else if ((!xmlStrcasecmp(node->name, (const xmlChar *) "premiere")))
+ {
+ // premiere info -> just ignore (till now)
+ }
+ else if ((!xmlStrcasecmp(node->name, (const xmlChar *) "previously-shown")))
+ {
+ // info if it's old ;) -> just ignore (till now)
+ }
else
{
esyslogs(source,"unknown element %s, please report!",node->name);