Merge pull request #109614 from h1v9/master

Strip empty deps when loading filesystem cache
This commit is contained in:
Thaddeus Crews 2025-08-18 08:29:10 -05:00
commit 34d20958fa
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC

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;
}