]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
access: allow advanced streaming for the permanent tickets, fixes #5294
authorJaroslav Kysela <perex@perex.cz>
Sat, 27 Oct 2018 08:47:33 +0000 (10:47 +0200)
committerJaroslav Kysela <perex@perex.cz>
Sat, 27 Oct 2018 08:47:33 +0000 (10:47 +0200)
src/access.c

index abb4d926369796e0edbb77e588fbcd9a53eb2b3a..dc989d1cb28f0f0470724ffa7e199958f23ae9a5 100644 (file)
@@ -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;
 }