Bug 1632854 - Pass the ChromeWindow reference to the OSKeyStore instead of the content global so the dialog will be app modal. r=MattN

Differential Revision: https://phabricator.services.mozilla.com/D73109
This commit is contained in:
Jared Wein 2020-04-29 20:28:11 +00:00
Родитель de535eae13
Коммит c02e30880d
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1948,10 +1948,11 @@ var gPrivacyPane = {
id: "master-password-os-auth-dialog-caption",
},
]);
let win = Services.wm.getMostRecentBrowserWindow();
let loggedIn = await OSKeyStore.ensureLoggedIn(
messageText.value,
captionText.value,
window,
win,
false
);
if (!loggedIn.authenticated) {