silently skip .DS_Store files when indexing quests

This commit is contained in:
Martin Michelsen
2023-12-31 21:27:12 -08:00
parent 6a65940720
commit 57f47f147a
+4
View File
@@ -494,6 +494,10 @@ QuestIndex::QuestIndex(
continue;
}
for (string filename : list_directory_sorted(cat_path)) {
if (filename == ".DS_Store") {
continue;
}
string file_path = cat_path + "/" + filename;
try {
string orig_filename = filename;