mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-12 15:59:58 -05:00
parent
d2da13da20
commit
b8564d5c24
@ -102,6 +102,9 @@ namespace
|
|||||||
entry->setPassword(fieldMap.value("value").toString());
|
entry->setPassword(fieldMap.value("value").toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (entry->password().isEmpty() && detailsMap.contains("password")) {
|
||||||
|
entry->setPassword(detailsMap.value("password").toString());
|
||||||
|
}
|
||||||
entry->setNotes(detailsMap.value("notesPlain").toString());
|
entry->setNotes(detailsMap.value("notesPlain").toString());
|
||||||
|
|
||||||
// Dive into the item sections to pull out advanced attributes
|
// Dive into the item sections to pull out advanced attributes
|
||||||
|
@ -96,6 +96,11 @@ void TestImports::testOPUX()
|
|||||||
QVERIFY(entry);
|
QVERIFY(entry);
|
||||||
// Check custom group icon
|
// Check custom group icon
|
||||||
QVERIFY(!entry->group()->iconUuid().isNull());
|
QVERIFY(!entry->group()->iconUuid().isNull());
|
||||||
|
|
||||||
|
// Check Category UUID 05 Passwords
|
||||||
|
entry = db->rootGroup()->findEntryByPath("/Personal/UUID 005 Password");
|
||||||
|
QVERIFY(entry);
|
||||||
|
QCOMPARE(entry->password(), QStringLiteral("uuid005password"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestImports::testOPVault()
|
void TestImports::testOPVault()
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user