Add steamcommunity.com to 2FA exception list

This commit is contained in:
varjolintu 2022-11-04 07:28:01 +02:00
parent af7e36803f
commit e580f02f18

View file

@ -150,7 +150,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;
}