mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Do not allow expired credentials automatically
This commit is contained in:
parent
4c1e5ec74c
commit
ed7b634dbf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue