diff --git a/src/mu-config.c b/src/mu-config.c index 9fd8c6ea..d358fe50 100644 --- a/src/mu-config.c +++ b/src/mu-config.c @@ -134,6 +134,12 @@ mu_config_set_defaults (MuConfigOptions *opts) opts->fields = "d f s"; opts->sortfield = "d"; } + + if (opts->linksdir) { + gchar *old = opts->linksdir; + opts->linksdir = mu_util_dir_expand (opts->linksdir); + g_free(old); + } }