Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
htsp: add subtitle to the epg event, fixes #2785
  • Loading branch information
perexg committed May 1, 2015
1 parent fd16a1e commit 8dbc38d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/htsp_server.c
Expand Up @@ -874,6 +874,8 @@ htsp_build_event
htsmsg_add_s64(out, "stop", e->stop);
if ((str = epg_broadcast_get_title(e, lang)))
htsmsg_add_str(out, "title", str);
if ((str = epg_broadcast_get_subtitle(e, lang)))
htsmsg_add_str(out, "subtitle", str);
if ((str = epg_broadcast_get_description(e, lang))) {
htsmsg_add_str(out, "description", str);
if ((str = epg_broadcast_get_summary(e, lang)))
Expand Down

0 comments on commit 8dbc38d

Please sign in to comment.