From 38c2b9a67bd6a81e465fc6a9666b7b10875f2ff7 Mon Sep 17 00:00:00 2001 From: Tomas Jakobsson Date: Tue, 9 Oct 2018 13:23:32 +0200 Subject: [PATCH] Fix missing / in custom collection path --- es-app/src/CollectionSystemManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/CollectionSystemManager.cpp b/es-app/src/CollectionSystemManager.cpp index 2d2673bee..e40a894b5 100644 --- a/es-app/src/CollectionSystemManager.cpp +++ b/es-app/src/CollectionSystemManager.cpp @@ -1035,12 +1035,12 @@ bool CollectionSystemManager::includeFileInAutoCollections(FileData* file) std::string getCustomCollectionConfigPath(std::string collectionName) { - return getCollectionsFolder() + "custom-" + collectionName + ".cfg";; + return getCollectionsFolder() + "/custom-" + collectionName + ".cfg"; } std::string getCollectionsFolder() { - return Utils::FileSystem::getGenericPath(Utils::FileSystem::getHomePath() + "/.emulationstation/collections/"); + return Utils::FileSystem::getGenericPath(Utils::FileSystem::getHomePath() + "/.emulationstation/collections"); } bool systemSort(SystemData* sys1, SystemData* sys2)