mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1769 from keepassxreboot/fix/add_steamcommunity_2fa_exception
Add steamcommunity.com to 2FA exception list
This commit is contained in:
commit
d9b743f58a
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue