Fix crash with non synced fog edit

This commit is contained in:
Mitchell McCaffrey 2021-01-27 07:57:59 +11:00
parent cbe1149178
commit b803f7b4d8

View File

@ -219,7 +219,9 @@ export function drawActionsToShapes(actions, actionIndex) {
}
if (action.type === "edit") {
for (let edit of action.shapes) {
shapesById[edit.id] = { ...shapesById[edit.id], ...edit };
if (edit.id in shapesById) {
shapesById[edit.id] = { ...shapesById[edit.id], ...edit };
}
}
}
if (action.type === "remove") {