mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-03 10:00:04 -05:00
Handle expired credentials normally
This commit is contained in:
parent
a5c1298e32
commit
0592218fa3
@ -911,8 +911,8 @@ QJsonObject BrowserService::prepareEntry(const Entry* entry)
|
||||
BrowserService::Access
|
||||
BrowserService::checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm)
|
||||
{
|
||||
if (entry->isExpired()) {
|
||||
return browserSettings()->allowExpiredCredentials() ? Unknown : Denied;
|
||||
if (entry->isExpired() && !browserSettings()->allowExpiredCredentials()) {
|
||||
return Denied;
|
||||
}
|
||||
|
||||
BrowserEntryConfig config;
|
||||
|
Loading…
x
Reference in New Issue
Block a user