mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-07 06:22:44 -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::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() && !browserSettings()->allowExpiredCredentials()) {
|
||||||
return browserSettings()->allowExpiredCredentials() ? Unknown : Denied;
|
return Denied;
|
||||||
}
|
}
|
||||||
|
|
||||||
BrowserEntryConfig config;
|
BrowserEntryConfig config;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue