summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2018-06-03 12:41:42 +0000
committerJens Georg <mail@jensge.org>2018-06-03 12:41:42 +0000
commit8e5aeed7ef10c52f91cec412c8f9f7a7321174cd (patch)
treee237f61ac70807d5e27755baa72b4a709b382f83
parent24e76fff70024a9f225ac168dce8053d1e3745d0 (diff)
parent4d341f0f5ac1cc395fd96281ad299ee2a608fe69 (diff)
downloadrygel-8e5aeed7ef10c52f91cec412c8f9f7a7321174cd.tar.gz
Merge branch '118-user-config-dir-is-localized' into 'master'
Resolve "user config dir is localized" Closes #118 See merge request GNOME/rygel!1
-rw-r--r--src/librygel-core/rygel-root-device-factory.vala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/librygel-core/rygel-root-device-factory.vala b/src/librygel-core/rygel-root-device-factory.vala
index 110255aa..3f9a6a75 100644
--- a/src/librygel-core/rygel-root-device-factory.vala
+++ b/src/librygel-core/rygel-root-device-factory.vala
@@ -93,8 +93,7 @@ public class Rygel.RootDeviceFactory : Object,
/* We store the modified descriptions in the user's config dir */
var config_dir = Environment.get_user_config_dir ();
this.ensure_dir_exists (config_dir);
- this.desc_dir = Path.build_filename (config_dir,
- Environment.get_application_name ());
+ this.desc_dir = Path.build_filename (config_dir, "Rygel");
this.ensure_dir_exists (this.desc_dir);
return true;