From: pete Date: Sun, 23 Jun 2013 16:05:26 +0000 (+0300) Subject: Description tag fix X-Git-Tag: 3.4patch1~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d124d9ebcbc10e150532940f4abfba7cc7fc866b;p=thirdparty%2Ftvheadend.git Description tag fix (cherry picked from commit c58e7cbf090cd996b6ae442da0ad80dff1a32080) --- diff --git a/src/muxer/tvh/mkmux.c b/src/muxer/tvh/mkmux.c index 258a54386..c42ca264e 100644 --- a/src/muxer/tvh/mkmux.c +++ b/src/muxer/tvh/mkmux.c @@ -599,6 +599,10 @@ _mk_build_metadata(const dvr_entry_t *de, const epg_broadcast_t *ebc) ls = ee->description; else if (ee && ee->summary) ls = ee->summary; + else if (ebc && ebc->description) + ls = ebc->description; + else if (ebc && ebc->summary) + ls = ebc->summary; if (ls) { lang_str_ele_t *e; RB_FOREACH(e, ls, link)