Merge pull request #109614 from h1v9/master
Strip empty deps when loading filesystem cache
This commit is contained in:
commit
34d20958fa
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue