summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChangwoo Ryu <cwryu@debian.org>2018-06-02 09:55:54 +0000
committerChangwoo Ryu <cwryu@debian.org>2018-06-03 15:41:35 +0900
commit4d341f0f5ac1cc395fd96281ad299ee2a608fe69 (patch)
treee237f61ac70807d5e27755baa72b4a709b382f83
parent24e76fff70024a9f225ac168dce8053d1e3745d0 (diff)
downloadrygel-4d341f0f5ac1cc395fd96281ad299ee2a608fe69.tar.gz
Don't use localized name for the config dir
Just use "Rygel" for config path name instead of GLib.Environment.get_application_name() which returns localized name. Close https://gitlab.gnome.org/GNOME/rygel/issues/118
-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;