summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2019-01-07 08:57:14 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2019-01-31 16:28:58 -0600
commit314ba863132e529ed72b21e4e82df16a1071f575 (patch)
treed2b0f77cf90ba1654929d76e00687575ba866b56
parentf782f123363794bfbdb478d7ce7fdb778470bdda (diff)
downloadepiphany-314ba863132e529ed72b21e4e82df16a1071f575.tar.gz
Keep sharing safe browsing data in default cache dir
Since this is not read by the web process it will work fine and sharing saves some space.
-rw-r--r--embed/ephy-embed-shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index 4bcb8d01e..37b79339b 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -812,7 +812,7 @@ ephy_embed_shell_get_global_gsb_service (EphyEmbedShell *shell)
char *db_path;
api_key = g_settings_get_string (EPHY_SETTINGS_WEB, EPHY_PREFS_WEB_GSB_API_KEY);
- db_path = g_build_filename (ephy_cache_dir (), EPHY_GSB_FILE, NULL);
+ db_path = g_build_filename (ephy_default_cache_dir (), EPHY_GSB_FILE, NULL);
priv->global_gsb_service = ephy_gsb_service_new (api_key, db_path);
g_free (api_key);