state: fix privileged access with sec context

This commit is contained in:
Victoria Brekenfeld 2023-11-08 14:50:54 +01:00
parent bdaec558e0
commit 542fe1f52d

View file

@ -308,7 +308,7 @@ pub fn client_should_see_privileged_protocols(client: &Client) -> bool {
{
client_is_privileged(client)
} else {
client_has_no_security_context(client)
client_is_privileged(client) || client_has_no_security_context(client)
}
}