You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Fix EditorFileSystemDirectory::get_file_deps() may return wrong results
Limit the maxsplit to `8` to get complete `deps`. `deps` caches the return value of `ResourceLoader::get_dependencies()`, which is also separated by "::". "::" is quite popular as a splitter.
This commit is contained in:
@@ -261,7 +261,8 @@ void EditorFileSystem::_scan_filesystem() {
|
|||||||
cpath = name;
|
cpath = name;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Vector<String> split = l.split("::");
|
// The last section (deps) may contain the same splitter, so limit the maxsplit to 8 to get the complete deps.
|
||||||
|
Vector<String> split = l.split("::", true, 8);
|
||||||
ERR_CONTINUE(split.size() < 9);
|
ERR_CONTINUE(split.size() < 9);
|
||||||
String name = split[0];
|
String name = split[0];
|
||||||
String file;
|
String file;
|
||||||
|
|||||||
Reference in New Issue
Block a user