Clear potential postinstall flag after backup import

This commit is contained in:
Johannes Zellner
2023-09-11 15:11:53 +02:00
parent 4653d6fdef
commit 93d4271bce

View File

@@ -1516,6 +1516,10 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$('#importBackupModal').modal('hide');
// clear potential post-install flag
$scope.app.pendingPostInstallConfirmation = false;
delete localStorage['confirmPostInstall_' + $scope.app.id];
refreshApp($scope.app.id, function (error) {
if (error) return Client.error(error);