diff --git a/src/file_storage.c b/src/file_storage.c index 158f35a..9e8151c 100644 --- a/src/file_storage.c +++ b/src/file_storage.c @@ -66,6 +66,10 @@ get_storage_path (void) elems = g_strsplit (path, ":", -1); storage_path = g_strdup (elems[0]); } + else if (*path) + { + storage_path = g_strdup (path); + } } if (storage_path == NULL)