From: Jaroslav Kysela Date: Tue, 30 Jan 2018 13:08:18 +0000 (+0100) Subject: DVR: timerec - add missing channel parameter, fixes #4901 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d86d26b0edabecede73e60d7e6ae6edf9ac5d071;p=thirdparty%2Ftvheadend.git DVR: timerec - add missing channel parameter, fixes #4901 --- diff --git a/src/dvr/dvr_timerec.c b/src/dvr/dvr_timerec.c index b91d9067d..cc379aab3 100644 --- a/src/dvr/dvr_timerec.c +++ b/src/dvr/dvr_timerec.c @@ -155,6 +155,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); htsmsg_add_s64(conf, "start", start); htsmsg_add_s64(conf, "stop", stop);