From ff9dd432628d3261a5f21856d40a27a073e079c1 Mon Sep 17 00:00:00 2001 From: alcroito Date: Mon, 13 Jul 2020 18:31:00 +0200 Subject: [PATCH] Skip referenced passwords in Health check report Fixes #5036 --- src/core/PasswordHealth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/PasswordHealth.cpp b/src/core/PasswordHealth.cpp index 6fdbf6c36..750fe39f1 100644 --- a/src/core/PasswordHealth.cpp +++ b/src/core/PasswordHealth.cpp @@ -106,7 +106,7 @@ HealthChecker::HealthChecker(QSharedPointer db) { // Build the cache of re-used passwords for (const auto* entry : db->rootGroup()->entriesRecursive()) { - if (!entry->isRecycled()) { + if (!entry->isRecycled() && !entry->isAttributeReference("Password")) { m_reuse[entry->password()] << QApplication::tr("Used in %1/%2").arg(entry->group()->hierarchy().join('/'), entry->title()); }