]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix typo causing EPG title to be replaced with description when data originated from...
authorAndreas Öman <andreas@lonelycoder.com>
Sun, 14 Sep 2008 20:48:39 +0000 (20:48 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Sun, 14 Sep 2008 20:48:39 +0000 (20:48 +0000)
xmltv.c

diff --git a/xmltv.c b/xmltv.c
index f6be35c1c6277fd229e293fb4af21ba2058f882c..44c3e21be008bdcd622c9d832d341915ded28135 100644 (file)
--- a/xmltv.c
+++ b/xmltv.c
@@ -297,7 +297,7 @@ xmltv_parse_programme_tags(xmltv_channel_t *xc, htsmsg_t *tags,
     epg_event_set_duration(e, stop - start);
 
     if(title != NULL) epg_event_set_title(e, title);
-    if(desc  != NULL) epg_event_set_title(e, desc);
+    if(desc  != NULL) epg_event_set_desc(e, desc);
   }
 }