[gnome-software/wip/kalev/gnome-3-22: 22/96] trivial: Split out some to-be-shared functionality
- From: Kalev Lember <klember src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/wip/kalev/gnome-3-22: 22/96] trivial: Split out some to-be-shared functionality
- Date: Tue, 7 Mar 2017 16:25:41 +0000 (UTC)
commit fab38057af67c1b0f6ff280574778666da9c5293
Author: Richard Hughes <richard hughsie com>
Date: Thu Dec 1 14:35:04 2016 +0000
trivial: Split out some to-be-shared functionality
src/plugins/gs-plugin-flatpak.c | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/src/plugins/gs-plugin-flatpak.c b/src/plugins/gs-plugin-flatpak.c
index ec784d4..1b26ed8 100644
--- a/src/plugins/gs-plugin-flatpak.c
+++ b/src/plugins/gs-plugin-flatpak.c
@@ -75,6 +75,16 @@ gs_plugin_initialize (GsPlugin *plugin)
priv->destdir_for_tests = g_getenv ("GS_SELF_TEST_FLATPACK_DATADIR");
}
+static gboolean
+_as_app_scope_is_compatible (AsAppScope scope1, AsAppScope scope2)
+{
+ if (scope1 == AS_APP_SCOPE_UNKNOWN)
+ return TRUE;
+ if (scope2 == AS_APP_SCOPE_UNKNOWN)
+ return TRUE;
+ return scope1 == scope2;
+}
+
void
gs_plugin_destroy (GsPlugin *plugin)
{
@@ -347,8 +357,7 @@ gs_plugin_file_to_app (GsPlugin *plugin,
/* run any objects with the corrext scope */
for (guint i = 0; i < priv->flatpaks->len; i++) {
GsFlatpak *flatpak = g_ptr_array_index (priv->flatpaks, i);
- if (scope != AS_APP_SCOPE_UNKNOWN &&
- scope != gs_flatpak_get_scope (flatpak)) {
+ if (!_as_app_scope_is_compatible (scope, gs_flatpak_get_scope (flatpak))) {
g_debug ("not handling bundle as scope incorrect");
continue;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]