diff --git a/src/gui/app/directives/modals/backups/restoreBackupModal.js b/src/gui/app/directives/modals/backups/restoreBackupModal.js index 59188ffac..038550fa9 100644 --- a/src/gui/app/directives/modals/backups/restoreBackupModal.js +++ b/src/gui/app/directives/modals/backups/restoreBackupModal.js @@ -68,6 +68,8 @@ if (restoreResult.success) { $ctrl.restoreComplete = true; + $ctrl.restoreHasError = false; + $ctrl.errorMessage = undefined; } else { $ctrl.restoreHasError = true; $ctrl.errorMessage = restoreResult.reason; @@ -91,8 +93,8 @@ $ctrl.restoreHasError = true; $ctrl.errorMessage = "Restore is taking longer than it should. There is likely an issue. You can close and try again. If you continue having issues, please reach out on Discord or Bluesky. We are happy to help!"; } - }, 30 * 1000); + }, 60 * 1000); }; } }); -}()); +}()); \ No newline at end of file