Implement KDBX 4.1 group tags

This commit is contained in:
Janek Bevendorff 2021-11-10 00:06:03 +01:00
parent cd9ef58e98
commit e5822974ac
5 changed files with 23 additions and 0 deletions

View file

@ -502,6 +502,10 @@ Group* KdbxXmlReader::parseGroup()
group->setNotes(readString());
continue;
}
if (m_xml.name() == "Tags") {
group->setTags(readString());
continue;
}
if (m_xml.name() == "IconID") {
int iconId = readNumber();
if (iconId < 0) {