From: Jaroslav Kysela Date: Sat, 27 Oct 2018 08:47:33 +0000 (+0200) Subject: access: allow advanced streaming for the permanent tickets, fixes #5294 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac48db1f169e97ec84aff790d21c20f669705593;p=thirdparty%2Ftvheadend.git access: allow advanced streaming for the permanent tickets, fixes #5294 --- diff --git a/src/access.c b/src/access.c index abb4d9263..dc989d1cb 100644 --- a/src/access.c +++ b/src/access.c @@ -869,7 +869,7 @@ access_get_by_auth(struct sockaddr_storage *src, const char *id) if (!pw) return NULL; a = access_get(src, pw->pw_username, access_get_by_auth_verify, NULL); - a->aa_rights &= ACCESS_STREAMING; + a->aa_rights &= ACCESS_ADVANCED_STREAMING|ACCESS_STREAMING; tvh_str_set(&a->aa_auth, id); return a; }