From 34c1fcb0bcc8f2bc046db7a658659c183502ceac Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Wed, 26 Sep 2012 12:41:14 +0100 Subject: [PATCH] Fix erroneous duplicate sending of event description in HTSP. May fix possible XBMC display problems. --- src/htsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htsp.c b/src/htsp.c index fd5061ed..a8e4afaa 100644 --- a/src/htsp.c +++ b/src/htsp.c @@ -503,7 +503,7 @@ htsp_build_event htsmsg_add_str(out, "title", str); if ((str = epg_broadcast_get_description(e, lang))) htsmsg_add_str(out, "description", str); - if ((str = epg_broadcast_get_description(e, lang))) + if ((str = epg_broadcast_get_summary(e, lang))) htsmsg_add_str(out, "summary", str); else if((str = epg_broadcast_get_summary(e, lang))) htsmsg_add_str(out, "description", str);