From: Jaroslav Kysela Date: Tue, 16 Oct 2018 14:59:51 +0000 (+0200) Subject: DVR: add username to the subscription, fixes #5215, fixes #5263 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72ba707d5232bb4569e616c82c563f457826ec9c;p=thirdparty%2Ftvheadend.git DVR: add username to the subscription, fixes #5215, fixes #5263 --- diff --git a/src/dvr/dvr_rec.c b/src/dvr/dvr_rec.c index 03d54bdf5..9b51aaa8d 100644 --- a/src/dvr/dvr_rec.c +++ b/src/dvr/dvr_rec.c @@ -155,7 +155,7 @@ dvr_rec_subscribe(dvr_entry_t *de) de->de_s = subscription_create_from_channel(prch, NULL, weight, buf, prch->prch_flags, - NULL, NULL, NULL, NULL); + NULL, aa->aa_username ?: "", NULL, NULL); if (de->de_s == NULL) { tvherror(LS_DVR, "unable to create new channel subcription for '%s' profile '%s'", channel_get_name(de->de_channel, channel_blank_name), profile_get_name(pro));