silently skip .DS_Store files when indexing quests
This commit is contained in:
@@ -494,6 +494,10 @@ QuestIndex::QuestIndex(
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
for (string filename : list_directory_sorted(cat_path)) {
|
for (string filename : list_directory_sorted(cat_path)) {
|
||||||
|
if (filename == ".DS_Store") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
string file_path = cat_path + "/" + filename;
|
string file_path = cat_path + "/" + filename;
|
||||||
try {
|
try {
|
||||||
string orig_filename = filename;
|
string orig_filename = filename;
|
||||||
|
|||||||
Reference in New Issue
Block a user