From 3fe473a5143b1b8da8493603f3c0fb41d45e9975 Mon Sep 17 00:00:00 2001 From: Gregory Pappas Date: Fri, 11 Aug 2023 15:15:43 +0000 Subject: [PATCH] Bug 1847821 - Remove unneeded macOS version checks in OSKeyStore r=Gijs Differential Revision: https://phabricator.services.mozilla.com/D185701 --- toolkit/modules/OSKeyStore.sys.mjs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/toolkit/modules/OSKeyStore.sys.mjs b/toolkit/modules/OSKeyStore.sys.mjs index fbeb7bcb57a4c..3d759ed740b08 100644 --- a/toolkit/modules/OSKeyStore.sys.mjs +++ b/toolkit/modules/OSKeyStore.sys.mjs @@ -70,13 +70,8 @@ export var OSKeyStore = { }, canReauth() { - // The OS auth dialog is not supported on macOS < 10.12 - // (Darwin 16) due to various issues (bug 1622304 and bug 1622303). - // We have no support on linux (bug 1527745.) - if ( - AppConstants.platform == "win" || - AppConstants.isPlatformAndVersionAtLeast("macosx", "16") - ) { + // We have no support on linux (bug 1527745) + if (AppConstants.platform == "win" || AppConstants.platform == "macosx") { lazy.log.debug( "canReauth, returning true, this._testReauth:", this._testReauth