Do not allow expired credentials automatically

This commit is contained in:
varjolintu 2022-07-19 20:53:27 +03:00 committed by Jonathan White
parent 4c1e5ec74c
commit ed7b634dbf

View file

@ -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;