From e580f02f185497dbcb9524ce690d76fdc1ccb88c Mon Sep 17 00:00:00 2001 From: varjolintu Date: Fri, 4 Nov 2022 07:28:01 +0200 Subject: [PATCH] Add steamcommunity.com to 2FA exception list --- keepassxc-browser/common/sites.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }