mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Merge pull request #109614 from h1v9/master
Strip empty deps when loading filesystem cache
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user