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
9365486f
Commit
9365486f
authored
Feb 19, 2022
by
Ahmad Samir
Committed by
Jonathan Esk-Riddell
Feb 22, 2022
Browse files
Fix build by explicitly creating a QUrl from QString
Reported by Ömer Fadıl Usta on IRC.
parent
ecd30fbc
Pipeline
#141112
passed with stage
in 2 minutes and 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp
View file @
9365486f
...
...
@@ -725,7 +725,7 @@ void FlatpakBackend::addAppFromFlatpakRef(const QUrl &url, ResultsStream *stream
auto
resource
=
new
FlatpakResource
(
asComponent
,
preferredInstallation
(),
this
);
resource
->
setFlatpakFileType
(
FlatpakResource
::
FileFlatpakRef
);
resource
->
setResourceFile
(
url
);
resource
->
setResourceLocation
(
refurl
);
resource
->
setResourceLocation
(
QUrl
(
refurl
)
)
;
resource
->
setOrigin
(
remoteName
);
resource
->
setFlatpakName
(
name
);
resource
->
setArch
(
flatpak_get_default_arch
());
...
...
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