Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix dvr_autorec_create_htsp to actually use "fulltext" parameter and …
…not to always set fulltext to "1".
  • Loading branch information
ksooo authored and perexg committed Apr 15, 2015
1 parent e78b3f4 commit ce3a9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_autorec.c
Expand Up @@ -247,7 +247,7 @@ dvr_autorec_create_htsp(const char *dvr_config_name, const char *title, int full
htsmsg_add_s64(conf, "start_extra", start_extra);
htsmsg_add_s64(conf, "stop_extra", stop_extra);
htsmsg_add_str(conf, "title", title);
htsmsg_add_u32(conf, "fulltext", 1);
htsmsg_add_u32(conf, "fulltext", fulltext);
htsmsg_add_str(conf, "config_name", dvr_config_name ?: "");
htsmsg_add_str(conf, "owner", owner ?: "");
htsmsg_add_str(conf, "creator", creator ?: "");
Expand Down

0 comments on commit ce3a9a1

Please sign in to comment.