summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-store.c
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-09-05 09:16:21 +0100
committerRichard Hughes <richard@hughsie.com>2016-09-05 09:57:56 +0100
commit0076c8b8b79faea1c435bf8c5c34b481a53733a2 (patch)
tree1cd8973b7a915fdc30479b88f9a60f1c4f4f14e2 /libappstream-glib/as-store.c
parentdfe2de8965b9e0d9d5f18d374c712a0ac2b23e4f (diff)
downloadappstream-glib-0076c8b8b79faea1c435bf8c5c34b481a53733a2.tar.gz
Convert the built unknown icons to the correct kind depending on the action
For building we want ->CACHED, for parsing local files we want ->STOCK. Fixes the other half of https://github.com/hughsie/appstream-glib/pull/128
Diffstat (limited to 'libappstream-glib/as-store.c')
-rw-r--r--libappstream-glib/as-store.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libappstream-glib/as-store.c b/libappstream-glib/as-store.c
index 7ac5d2f..33278a8 100644
--- a/libappstream-glib/as-store.c
+++ b/libappstream-glib/as-store.c
@@ -2532,6 +2532,8 @@ as_store_load_installed (AsStore *store,
while ((tmp = g_dir_read_name (dir)) != NULL) {
AsApp *app_tmp;
+ GPtrArray *icons;
+ guint i;
g_autofree gchar *filename = NULL;
g_autoptr(AsApp) app = NULL;
filename = g_build_filename (path, tmp, NULL);
@@ -2562,6 +2564,14 @@ as_store_load_installed (AsStore *store,
return FALSE;
}
+ /* convert any UNKNOWN icons to LOCAL */
+ icons = as_app_get_icons (app);
+ for (i = 0; i < icons->len; i++) {
+ AsIcon *icon = g_ptr_array_index (icons, i);
+ if (as_icon_get_kind (icon) == AS_ICON_KIND_UNKNOWN)
+ as_icon_set_kind (icon, AS_ICON_KIND_STOCK);
+ }
+
/* don't match against non-package apps in the store */
if (scope == AS_APP_SCOPE_SYSTEM &&
g_str_has_prefix (path, "/usr/share")) {