mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Do not allow expired credentials automatically
This commit is contained in:
committed by
Jonathan White
parent
4c1e5ec74c
commit
ed7b634dbf
@@ -954,7 +954,7 @@ BrowserService::Access
|
|||||||
BrowserService::checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm)
|
BrowserService::checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm)
|
||||||
{
|
{
|
||||||
if (entry->isExpired()) {
|
if (entry->isExpired()) {
|
||||||
return browserSettings()->allowExpiredCredentials() ? Allowed : Denied;
|
return browserSettings()->allowExpiredCredentials() ? Unknown : Denied;
|
||||||
}
|
}
|
||||||
|
|
||||||
BrowserEntryConfig config;
|
BrowserEntryConfig config;
|
||||||
|
|||||||
Reference in New Issue
Block a user