From: Andreas Ă–man Date: Sun, 14 Sep 2008 20:48:39 +0000 (+0000) Subject: Fix typo causing EPG title to be replaced with description when data originated from... X-Git-Tag: 2.12~882 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0dd2efe9f804f718db6e3f2caaecba526417cd5f;p=thirdparty%2Ftvheadend.git Fix typo causing EPG title to be replaced with description when data originated from xmltv. --- diff --git a/xmltv.c b/xmltv.c index f6be35c1c..44c3e21be 100644 --- 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); } }