From: Jaroslav Kysela Date: Thu, 1 Feb 2018 16:30:45 +0000 (+0100) Subject: timerec: fix title passing, fixes #4868 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7de759e83dc655fdfa475479ef04cb1019035823;p=thirdparty%2Ftvheadend.git timerec: fix title passing, fixes #4868 --- diff --git a/src/dvr/dvr_timerec.c b/src/dvr/dvr_timerec.c index cc379aab3..b8f43d2a1 100644 --- a/src/dvr/dvr_timerec.c +++ b/src/dvr/dvr_timerec.c @@ -156,7 +156,7 @@ dvr_timerec_check(dvr_timerec_entry_t *dte) conf = htsmsg_create_map(); htsmsg_add_uuid(conf, "config_name", &dte->dte_config->dvr_id.in_uuid); htsmsg_set_uuid(conf, "channel", &dte->dte_channel->ch_id.in_uuid); - htsmsg_add_str2(conf, "title", title); + lang_str_serialize_one(conf, "title", title, NULL); htsmsg_add_s64(conf, "start", start); htsmsg_add_s64(conf, "stop", stop); htsmsg_add_u32(conf, "pri", dte->dte_pri);