mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-20 03:58:10 -04:00
Implement KDBX 4.1 group tags
This commit is contained in:
parent
cd9ef58e98
commit
e5822974ac
5 changed files with 23 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue