summaryrefslogtreecommitdiff
path: root/libappstream-builder/plugins/asb-plugin-hardcoded.c
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-08-19 09:40:45 +0100
committerRichard Hughes <richard@hughsie.com>2014-08-19 09:40:45 +0100
commit38bf10751f77a841ce153eef318f38e122472bfa (patch)
treee1384bd40c34f59e8c0c2bbb515fad9e96dcacb4 /libappstream-builder/plugins/asb-plugin-hardcoded.c
parent9fefea6d0944080c1094d9bc202af25ce5e086d4 (diff)
downloadappstream-glib-38bf10751f77a841ce153eef318f38e122472bfa.tar.gz
Use the full ID when matching broken applications
Diffstat (limited to 'libappstream-builder/plugins/asb-plugin-hardcoded.c')
-rw-r--r--libappstream-builder/plugins/asb-plugin-hardcoded.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/libappstream-builder/plugins/asb-plugin-hardcoded.c b/libappstream-builder/plugins/asb-plugin-hardcoded.c
index 5a7e4ff..c86dff7 100644
--- a/libappstream-builder/plugins/asb-plugin-hardcoded.c
+++ b/libappstream-builder/plugins/asb-plugin-hardcoded.c
@@ -157,30 +157,30 @@ asb_plugin_process_app (AsbPlugin *plugin,
guint days;
/* add extra categories */
- tmp = as_app_get_id (AS_APP (app));
- if (g_strcmp0 (tmp, "0install") == 0)
+ tmp = as_app_get_id_full (AS_APP (app));
+ if (g_strcmp0 (tmp, "0install.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "alacarte") == 0)
+ if (g_strcmp0 (tmp, "alacarte.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "deja-dup") == 0)
+ if (g_strcmp0 (tmp, "deja-dup.desktop") == 0)
as_app_add_category (AS_APP (app), "Utility", -1);
- if (g_strcmp0 (tmp, "gddccontrol") == 0)
+ if (g_strcmp0 (tmp, "gddccontrol.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "nautilus") == 0)
+ if (g_strcmp0 (tmp, "nautilus.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "pessulus") == 0)
+ if (g_strcmp0 (tmp, "pessulus.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "pmdefaults") == 0)
+ if (g_strcmp0 (tmp, "pmdefaults.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "fwfstab") == 0)
+ if (g_strcmp0 (tmp, "fwfstab.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
- if (g_strcmp0 (tmp, "bmpanel2cfg") == 0)
+ if (g_strcmp0 (tmp, "bmpanel2cfg.desktop") == 0)
as_app_add_category (AS_APP (app), "System", -1);
/* add extra project groups */
- if (g_strcmp0 (tmp, "nemo") == 0)
+ if (g_strcmp0 (tmp, "nemo.desktop") == 0)
as_app_set_project_group (AS_APP (app), "Cinnamon", -1);
- if (g_strcmp0 (tmp, "xfdashboard") == 0)
+ if (g_strcmp0 (tmp, "xfdashboard.desktop") == 0)
as_app_set_project_group (AS_APP (app), "XFCE", -1);
/* use the URL to guess the project group */