Merge pull request #218 from pop-os/fix/privileged_without_sec

This commit is contained in:
Victoria Brekenfeld 2023-11-08 15:11:17 +01:00 committed by GitHub
commit fe7bbeb17a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)
}
}