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-08 13:48:05 +0300
commited7b634dbf157915d55af5b13d6780bd41d83e36 (patch)
treef3186c30163e6c3ae365b25241cbd36bd9fc79ef
parent4c1e5ec74ce01de634d0948768d8157dc54d7da6 (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;