Fix Proton Pass importer not importing email when there is no username

This commit is contained in:
Samuel Rac 2025-03-13 14:11:58 +01:00
parent 31c0b23890
commit 7d8e4f8f70

View file

@ -73,7 +73,12 @@ namespace
}
if (loginMap.contains("itemEmail")) {
entry->attributes()->set("login_email", loginMap.value("itemEmail").toString());
// Use the email as username if there is no username
if (loginMap.value("itemUsername").toString().isEmpty()) {
entry->setUsername(loginMap.value("itemEmail").toString());
} else {
entry->attributes()->set("login_email", loginMap.value("itemEmail").toString());
}
}
// Set the entry url(s)