Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Discover
Commits
8b53c113
Commit
8b53c113
authored
May 07, 2022
by
Aleix Pol Gonzalez
🐧
Browse files
flatpak: No need to report that apps can see kdeglobals
It's an implementation detail
parent
fc3b95d4
Pipeline
#172676
passed with stage
in 1 minute and 8 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
libdiscover/backends/FlatpakBackend/FlatpakResource.cpp
View file @
8b53c113
...
...
@@ -749,6 +749,11 @@ void FlatpakResource::loadPermissions()
bool
hasHostRW
=
false
;
for
(
const
QStringView
&
dir
:
dirs
)
{
if
(
dir
==
QLatin1String
(
"xdg-config/kdeglobals:ro"
))
{
// Ignore notifying about the global file being visible, since it's intended by design
continue
;
}
int
separator
=
dir
.
lastIndexOf
(
':'
);
const
QStringView
postfix
=
separator
>
0
?
dir
.
mid
(
separator
)
:
QStringView
();
const
QStringView
symbolicName
=
dir
.
left
(
separator
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment