Remove allowMissing option in readScenePaths

This commit is contained in:
2026-04-13 21:31:46 +02:00
parent 6470718c47
commit f10128fe11

View File

@@ -2985,7 +2985,7 @@ function readScenePaths(
value: unknown,
options: { allowMissing: boolean }
): SceneDocument["paths"] {
if (value === undefined && options.allowMissing) {
if (value === undefined) {
return {};
}