зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1648187: Don't prompt for reauthorization if pref is disabled r=zbraniecki
Differential Revision: https://phabricator.services.mozilla.com/D80955
This commit is contained in:
Родитель
5a67b515ea
Коммит
8376f33335
|
@ -312,6 +312,10 @@ class FormAutofillParent extends JSWindowActorParent {
|
|||
}
|
||||
case "FormAutofill:GetDecryptedString": {
|
||||
let { cipherText, reauth } = data;
|
||||
if (!FormAutofillUtils._reauthEnabledByUser) {
|
||||
log.debug("Reauth is disabled");
|
||||
reauth = false;
|
||||
}
|
||||
let string;
|
||||
try {
|
||||
string = await OSKeyStore.decrypt(cipherText, reauth);
|
||||
|
|
Загрузка…
Ссылка в новой задаче