Skip to content

Commit

Permalink
write LastModTime base64 encoded
Browse files Browse the repository at this point in the history
to fix error message in keepass see keeweb#49
  • Loading branch information
AlBundy33 authored Mar 3, 2023
1 parent 9b86a03 commit 470f23b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/format/kdbx-custom-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export class KdbxCustomData {
if (item.lastModified && ctx.kdbx.versionIsAtLeast(4, 1)) {
XmlUtils.setDate(
XmlUtils.addChildNode(itemNode, XmlNames.Elem.LastModTime),
item.lastModified
item.lastModified,
true
);
}
}
Expand Down

0 comments on commit 470f23b

Please sign in to comment.