mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Handle expired credentials normally
This commit is contained in:
parent
a5c1298e32
commit
0592218fa3
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue