Misc updates

This commit is contained in:
Mo Bitar
2018-05-23 12:57:39 -05:00
parent 830826ee06
commit f9d5323336
2 changed files with 5 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ class AccountMenu {
$timeout, storageManager, $compile, archiveManager) {
'ngInject';
$scope.formData = {mergeLocal: true, url: syncManager.serverURL, ephemeral: false, email: "a@bitar.io", user_password: "password"};
$scope.formData = {mergeLocal: true, url: syncManager.serverURL, ephemeral: false};
$scope.user = authManager.user;
$scope.server = syncManager.serverURL;
@@ -80,8 +80,8 @@ class AccountMenu {
$timeout(() => {
$scope.formData.showLogin = true;
$scope.formData.mfa = null;
if(error.message) { alert(error.message); }
})
alert(error.message);
}
}

View File

@@ -77,7 +77,8 @@ angular.module('app')
var keys = this.keys();
if(keys && keys.ak) {
return "003";
// If there's no version stored, and there's an ak, it has to be 002. Newer versions would have thier version stored in authParams.
return "002";
} else {
return "001";
}
@@ -132,6 +133,7 @@ angular.module('app')
if(SFJS.isProtocolVersionOutdated(authParams.version)) {
let message = `The encryption version for your account, ${authParams.version}, is outdated and requires upgrade. You may proceed with login, but are advised to follow prompts for Security Updates once inside. Please visit standardnotes.org/help/security for more information.\n\nClick 'OK' to proceed with login.`
if(!confirm(message)) {
callback({error: {}});
return;
}
}