summaryrefslogtreecommitdiff
path: root/lib/ephy-settings.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <cgarcia@igalia.com>2018-06-14 12:52:21 +0200
committerCarlos Garcia Campos <carlosgc@gnome.org>2018-06-28 14:58:24 +0200
commitf49fe289c91cfd8d79ca85e3b9e00f00a8e2ba27 (patch)
treeddf909e5a050f3e91f8cddc3d8b1f0d3399f7011 /lib/ephy-settings.c
parentafde25508d099b4283524fbf9ecde3a7d5abbeff (diff)
downloadepiphany-f49fe289c91cfd8d79ca85e3b9e00f00a8e2ba27.tar.gz
web-apps: rework web app utils to use an application id instead of its name
This is in preparation to support changing the web application name.
Diffstat (limited to 'lib/ephy-settings.c')
-rw-r--r--lib/ephy-settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ephy-settings.c b/lib/ephy-settings.c
index 0b84e08c8..67a98d34a 100644
--- a/lib/ephy-settings.c
+++ b/lib/ephy-settings.c
@@ -48,7 +48,7 @@ ephy_settings_init (void)
g_str_equal, g_free,
g_object_unref);
- web_app_name = g_strrstr (profile_directory, EPHY_WEB_APP_PREFIX);
+ web_app_name = strstr (profile_directory, EPHY_WEB_APP_PREFIX);
if (web_app_name)
base_path = g_build_path ("/", "/org/gnome/epiphany/web-apps/", web_app_name, NULL);
else