diff --git a/src/app/settings/settingsUpdateKeyController.js b/src/app/settings/settingsUpdateKeyController.js index 98097f4a91..1672e51b81 100644 --- a/src/app/settings/settingsUpdateKeyController.js +++ b/src/app/settings/settingsUpdateKeyController.js @@ -15,7 +15,11 @@ $scope.processing = true; $scope.savePromise = cryptoService.hashPassword($scope.masterPassword).then(function (hash) { - return cipherService.updateKey(hash); + return cipherService.updateKey(hash, function () { + return null; + }, function () { + return null; + }); }).then(function () { $uibModalInstance.dismiss('cancel'); authService.logOut();