Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarjolintu <sami.vanttinen@ahmala.org>2022-11-04 08:28:01 +0300
committervarjolintu <sami.vanttinen@ahmala.org>2022-11-04 08:28:01 +0300
commite580f02f185497dbcb9524ce690d76fdc1ccb88c (patch)
tree5d2913fa65673943b5084de2e96adcbacd7a82b0
parentaf7e36803faaa3526283533c1812b75397206094 (diff)
Add steamcommunity.com to 2FA exception list
-rw-r--r--keepassxc-browser/common/sites.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/keepassxc-browser/common/sites.js b/keepassxc-browser/common/sites.js
index f6c42f2..2549a9f 100644
--- a/keepassxc-browser/common/sites.js
+++ b/keepassxc-browser/common/sites.js
@@ -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;
}