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:
Adam Roach [:abr] 2020-06-24 21:06:53 +00:00
Родитель 5a67b515ea
Коммит 8376f33335
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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);