Strip empty deps when loading filesystem cache

This commit is contained in:
h1v9
2025-08-14 18:40:29 +03:00
parent e67074d0ab
commit 54619b3176

View File

@@ -465,7 +465,7 @@ void EditorFileSystem::_scan_filesystem() {
fc.import_md5 = slices[5];
fc.import_dest_paths = slices[6].split("<*>");
}
fc.deps = split[8].strip_edges().split("<>");
fc.deps = split[8].strip_edges().split("<>", false);
file_cache[name] = fc;
}