]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Description tag fix
authorpete <petri.posio@gmail.com>
Sun, 23 Jun 2013 16:05:26 +0000 (19:05 +0300)
committerAdam Sutton <dev@adamsutton.me.uk>
Thu, 11 Jul 2013 19:10:02 +0000 (20:10 +0100)
(cherry picked from commit c58e7cbf090cd996b6ae442da0ad80dff1a32080)

src/muxer/tvh/mkmux.c

index 258a54386a096141987f5e13241d85666aaf5195..c42ca264e1b3fcc694462a22ee21581f0995b110 100644 (file)
@@ -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)