We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
XDG_*
This makes it fail to read/save settings under the sandbox
liferea-plugin-studio/webkit-setting/webkitsetting.py
Lines 157 to 162 in bebd17d
/home/user/.{config, local, cache}
HOME
Instead use XDG_* variables which if not set falls back to $HOME/.{config, local/share, cache}
$HOME/.{config, local/share, cache}
I haven't checked all the plugins but presumably anything that doesn't use XDG_* variables probably needs to be updated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This makes it fail to read/save settings under the sandbox
liferea-plugin-studio/webkit-setting/webkitsetting.py
Lines 157 to 162 in bebd17d
/home/user/.{config, local, cache}
and theHOME
variable is unchanged inside the sandbox, onlyXDG_*
variables are set.Instead use
XDG_*
variables which if not set falls back to$HOME/.{config, local/share, cache}
I haven't checked all the plugins but presumably anything that doesn't use
XDG_*
variables probably needs to be updated.The text was updated successfully, but these errors were encountered: