From ac48db1f169e97ec84aff790d21c20f669705593 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sat, 27 Oct 2018 10:47:33 +0200 Subject: [PATCH] access: allow advanced streaming for the permanent tickets, fixes #5294 --- src/access.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2