aboutsummaryrefslogtreecommitdiff
path: root/src/metadata-menu-item.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/metadata-menu-item.vala')
-rw-r--r--src/metadata-menu-item.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/metadata-menu-item.vala b/src/metadata-menu-item.vala
index 623aaf5..a7cbf46 100644
--- a/src/metadata-menu-item.vala
+++ b/src/metadata-menu-item.vala
@@ -62,8 +62,8 @@ public class MetadataMenuitem : PlayerItem
private static string? create_album_art_temp_dir()
{
string path = GLib.Path.build_filename(Environment.get_user_cache_dir(), ALBUM_ART_DIR_SUFFIX);
- if(DirUtils.create(path, 0700) == -1){
- warning("could not create a temp dir for remote album art, it must have been created already");
+ if(DirUtils.create_with_parents(path, 0700) == -1){
+ warning("could not create temp dir %s for remote album art, it must have been created already", path);
}
return path;
}