mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-04 21:19:18 -04:00
Handle expired credentials normally
This commit is contained in:
parent
b8da5e0577
commit
fa73f100f7
1 changed files with 2 additions and 2 deletions
|
@ -961,8 +961,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…
Add table
Add a link
Reference in a new issue