Merge pull request #1769 from keepassxreboot/fix/add_steamcommunity_2fa_exception

Add steamcommunity.com to 2FA exception list
This commit is contained in:
Sami Vänttinen 2022-11-04 13:33:52 +02:00 committed by GitHub
commit d9b743f58a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,7 +152,8 @@ kpxcSites.segmentedTotpExceptionFound = function(form) {
return false;
}
if (document.location.href.startsWith('https://store.steampowered.com') && form.length === 5) {
if ((document.location.href.startsWith('https://store.steampowered.com')
|| document.location.href.startsWith('https://steamcommunity.com/login')) && form.length === 5) {
return true;
}