From: pete Date: Sun, 23 Jun 2013 16:05:26 +0000 (+0300) Subject: Description tag fix X-Git-Tag: v3.9~40^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F281%2Fhead;p=thirdparty%2Ftvheadend.git Description tag fix --- diff --git a/src/muxer/tvh/mkmux.c b/src/muxer/tvh/mkmux.c index 947fa9f17..f641feb7f 100644 --- a/src/muxer/tvh/mkmux.c +++ b/src/muxer/tvh/mkmux.c @@ -603,6 +603,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)