Bug 618229 - don't enforce a minimum passphrase length for entering existing data. r=mconnor a=blocking-beta8
This commit is contained in:
@@ -222,8 +222,7 @@ var gSyncSetup = {
|
||||
case EXISTING_ACCOUNT_LOGIN_PAGE:
|
||||
let hasUser = document.getElementById("existingAccountName").value != "";
|
||||
let hasPass = document.getElementById("existingPassword").value != "";
|
||||
let hasKey = document.getElementById("existingPassphrase")
|
||||
.value.length >= Weave.MIN_PP_LENGTH;
|
||||
let hasKey = document.getElementById("existingPassphrase").value != "";
|
||||
|
||||
if (hasUser && hasPass && hasKey) {
|
||||
if (this._usingMainServers)
|
||||
|
||||
Reference in New Issue
Block a user