We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd201b commit c72b95fCopy full SHA for c72b95f
1 file changed
src/core/PasswordHealth.cpp
@@ -152,11 +152,11 @@ QSharedPointer<PasswordHealth> HealthChecker::evaluate(const Entry* entry) const
152
health->addScoreReason(QObject::tr("Password is used %1 time(s)", "", count).arg(QString::number(count)));
153
// Add the first 20 uses of the password to prevent the details display from growing too large
154
for (int i = 0; i < used.size(); ++i) {
155
- health->addScoreDetails(used[i]);
156
- if (i == 19) {
+ if (i == 20) {
157
health->addScoreDetails("…");
158
break;
159
}
+ health->addScoreDetails(used[i]);
160
161
162
// Don't allow re-used passwords to be considered "good"
0 commit comments