From b8e39ee85566a46ea33a9980ceb3b9b501a3b60a Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Mon, 16 Jan 2017 13:31:59 +0100 Subject: Tighten a rule that classifies apps as web-apps ... so that Epiphany itself wouldn't get classified as one. https://bugzilla.gnome.org/show_bug.cgi?id=776860 --- libappstream-glib/as-app-desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libappstream-glib/as-app-desktop.c b/libappstream-glib/as-app-desktop.c index c668fab..f1192e2 100644 --- a/libappstream-glib/as-app-desktop.c +++ b/libappstream-glib/as-app-desktop.c @@ -467,7 +467,7 @@ as_app_parse_desktop_file (AsApp *app, G_KEY_FILE_DESKTOP_KEY_EXEC, NULL); if (exec != NULL) { - if (g_str_has_prefix (exec, "epiphany")) + if (g_str_has_prefix (exec, "epiphany --application-mode")) as_app_set_kind (app, AS_APP_KIND_WEB_APP); } } -- cgit v1.2.1