From 624fc99b788e023013d92b77626b6dba2da82f5a Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Wed, 7 Aug 2019 12:17:56 +1000 Subject: [PATCH] fixed error that made too many directories --- app/common/filefunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/filefunctions.cpp b/app/common/filefunctions.cpp index 926729d8d..a223dfcec 100644 --- a/app/common/filefunctions.cpp +++ b/app/common/filefunctions.cpp @@ -32,7 +32,7 @@ QString GetMediaIndexLocation() QDir media_index_dir = local_appdata_dir.filePath("mediaindex"); // Attempt to ensure this folder exists - media_index_dir.mkpath("mediaindex"); + media_index_dir.mkpath("."); return media_index_dir.absolutePath(); }