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

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarjolintu <sami.vanttinen@protonmail.com>2022-07-19 20:53:27 +0300
committerJonathan White <support@dmapps.us>2022-09-22 13:49:07 +0300
commitf95019964e45b8d8323a7d74cfad7e29e7fd1139 (patch)
tree6c3fd8be53d6f5a627d4f707bd5407fc2c1f5516
parent59d20cb7ae7641323a0175684cd3505389f30a38 (diff)
Do not allow expired credentials automatically
-rw-r--r--src/browser/BrowserService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/browser/BrowserService.cpp b/src/browser/BrowserService.cpp
index 7e0a8d6b1..38601de5b 100644
--- a/src/browser/BrowserService.cpp
+++ b/src/browser/BrowserService.cpp
@@ -954,7 +954,7 @@ BrowserService::Access
BrowserService::checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm)
{
if (entry->isExpired()) {
- return browserSettings()->allowExpiredCredentials() ? Allowed : Denied;
+ return browserSettings()->allowExpiredCredentials() ? Unknown : Denied;
}
BrowserEntryConfig config;