Skip to content

Commit 54619b3

Browse files
committed
Strip empty deps when loading filesystem cache
1 parent e67074d commit 54619b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/file_system/editor_file_system.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ void EditorFileSystem::_scan_filesystem() {
465465
fc.import_md5 = slices[5];
466466
fc.import_dest_paths = slices[6].split("<*>");
467467
}
468-
fc.deps = split[8].strip_edges().split("<>");
468+
fc.deps = split[8].strip_edges().split("<>", false);
469469

470470
file_cache[name] = fc;
471471
}

0 commit comments

Comments
 (0)