Bug 1595656 - isUserFacingLogin should only exclude the FxA one, not legacy extension ones. r=sfoster

We shouldn't hide data saved by legacy extensions, the user should remain in control of them since they may contain credentials they want to delete.

Differential Revision: https://phabricator.services.mozilla.com/D53833

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Matthew Noorenberghe 2019-11-20 22:55:12 +00:00
Родитель 523d1576b3
Коммит 4ee2233074
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1105,7 +1105,7 @@ this.LoginHelper = {
},
isUserFacingLogin(login) {
return !login.origin.startsWith("chrome://");
return login.origin != "chrome://FirefoxAccounts"; // FXA_PWDMGR_HOST
},
async getAllUserFacingLogins() {