diff --git a/src/editor/model/Editor.js b/src/editor/model/Editor.js index a2e0cd462..f4f04e3a1 100644 --- a/src/editor/model/Editor.js +++ b/src/editor/model/Editor.js @@ -193,7 +193,7 @@ export default class EditorModel extends Model { } if (stm.isAutosave() && changes >= stm.getStepsBeforeSave()) { - this.store(); + this.store().catch(err => this.logError(err)); } }