Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
htsp_server: fix subtitle typo in htsp_build_dvrentry(), fixes #3470
  • Loading branch information
perexg committed Jan 3, 2016
1 parent a1b7002 commit ead75d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/htsp_server.c
Expand Up @@ -883,7 +883,7 @@ htsp_build_dvrentry(htsp_connection_t *htsp, dvr_entry_t *de, const char *method

if(de->de_title && (s = lang_str_get(de->de_title, lang)))
htsmsg_add_str(out, "title", s);
if(de->de_title && (s = lang_str_get(de->de_subtitle, lang)))
if(de->de_subtitle && (s = lang_str_get(de->de_subtitle, lang)))
htsmsg_add_str(out, "subtitle", s);
if(de->de_desc && (s = lang_str_get(de->de_desc, lang)))
htsmsg_add_str(out, "description", s);
Expand Down

0 comments on commit ead75d5

Please sign in to comment.