-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Play nicely with other overrides #168
Play nicely with other overrides #168
Conversation
1. Reset overrides ONLY overrides permissions controlled by this plug 2. Saving new overrides merges the new values into the existing files in the file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey nice work! This is really close, but I am noticing an issue where it looks like it's putting together strings with ;
in the middle instead of at the end.
For example:
Use flatpak override
to add a custom filesystem permission. See that the contents of the overrides file are:
[Context]
filesystems=/path/to/directory;
Toggle a permission off. (I used network). Notice that the the contents are now:
[Context]
filesystems=;/path/to/directory
shared=network
I see what's going on.
is interpreted as 2 values, one of which is a zero length string. Easy fix though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice fix!
Fixes #155