mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
Merge 59df1d0d7c into d9be1b0682
This commit is contained in:
commit
84df3a599f
1 changed files with 2 additions and 2 deletions
|
|
@ -152,11 +152,11 @@ QSharedPointer<PasswordHealth> HealthChecker::evaluate(const Entry* entry) const
|
|||
health->addScoreReason(QObject::tr("Password is used %1 time(s)", "", count).arg(QString::number(count)));
|
||||
// Add the first 20 uses of the password to prevent the details display from growing too large
|
||||
for (int i = 0; i < used.size(); ++i) {
|
||||
health->addScoreDetails(used[i]);
|
||||
if (i == 19) {
|
||||
if (i == 20) {
|
||||
health->addScoreDetails("…");
|
||||
break;
|
||||
}
|
||||
health->addScoreDetails(used[i]);
|
||||
}
|
||||
|
||||
// Don't allow re-used passwords to be considered "good"
|
||||
|
|
|
|||
Loading…
Reference in a new issue