[gnome-software/gnome-3-32] flatpak: Use the source, rather than reconstructing flatpak ID
- From: Kalev Lember <klember src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/gnome-3-32] flatpak: Use the source, rather than reconstructing flatpak ID
- Date: Thu, 11 Jul 2019 15:42:58 +0000 (UTC)
commit 72096f739011620cc041acac47002ced3730c8e8
Author: Kalev Lember <klember redhat com>
Date: Mon Jul 8 16:00:01 2019 +0300
flatpak: Use the source, rather than reconstructing flatpak ID
Instead of using gs_flatpak_app_get_ref_display that reconstructs the
flatpak ID from parts, just use the GsApp source that already has what
we need.
https://gitlab.gnome.org/GNOME/gnome-software/issues/684
plugins/flatpak/gs-flatpak.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/plugins/flatpak/gs-flatpak.c b/plugins/flatpak/gs-flatpak.c
index 24599174..88e26c65 100644
--- a/plugins/flatpak/gs-flatpak.c
+++ b/plugins/flatpak/gs-flatpak.c
@@ -2120,20 +2120,19 @@ gs_flatpak_refine_appstream (GsFlatpak *self,
GError **error)
{
const gchar *origin = gs_app_get_origin (app);
- g_autofree gchar *ref_display = NULL;
- g_autofree gchar *ref_display_safe = NULL;
+ const gchar *source = gs_app_get_source_default (app);
+ g_autofree gchar *source_safe = NULL;
g_autofree gchar *xpath = NULL;
g_autoptr(GError) error_local = NULL;
g_autoptr(XbNode) component = NULL;
- if (gs_flatpak_app_get_ref_name (app) == NULL)
+ if (origin == NULL || source == NULL)
return TRUE;
- /* find using ID and origin */
- ref_display = gs_flatpak_app_get_ref_display (app);
- ref_display_safe = xb_string_escape (ref_display);
+ /* find using source and origin */
+ source_safe = xb_string_escape (source);
xpath = g_strdup_printf ("components[@origin='%s']/component/bundle[@type='flatpak'][text()='%s']/..",
- origin, ref_display_safe);
+ origin, source_safe);
component = xb_silo_query_first (silo, xpath, &error_local);
if (component == NULL) {
g_debug ("no match for %s, cannot fall back to %s: %s",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]