Skip to content

Commit

Permalink
Implement #42 -- DB Metadata, Group UUID
Browse files Browse the repository at this point in the history
This commit implements a Metadata field for Database, whose only
member is 'recyclebin_uuid' (String).

It also implements a `uuid` field for Group, that can be matched with
the database's `meta.recyclebin_uuid`
  • Loading branch information
DavidVentura authored and sseemayer committed Dec 29, 2022
1 parent f2bc31b commit 371d705
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/parse/kdbx3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ pub(crate) fn parse(data: &[u8], key_elements: &[Vec<u8>]) -> Result<Database> {
for block_buffer in xml_blocks {
let (block_group, _meta) =
xml_parse::parse_xml_block(&block_buffer, &mut *inner_decryptor)?;
// FIXME: This should only be done when _meta has a meaningful value
meta = _meta;
root.children.push(Node::Group(block_group));
}
Expand Down

0 comments on commit 371d705

Please sign in to comment.