You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the latest version 2.1.1. At first I thought I did something wrong, but after doing a separate test it seems like a bug in the save function. Group tags are not written into the output file.
import{defaultaskdbxweb}from'kdbxweb';import{writeFileSync}from'fs';constcredentials=newkdbxweb.Credentials(kdbxweb.ProtectedValue.fromString('test'));constdb=kdbxweb.Kdbx.create(credentials,'title');constgroup=db.createGroup(db.getDefaultGroup(),'Tagged Group');// will not be saved in groupsgroup.tags=['tag1','tag2'];constentry=db.createEntry(group,'Tagged Entry');// will be saved in entriesentry.tags=['tag1','tag2'];constdata=awaitdb.saveXml();writeFileSync('test.xml',data);
Hello,
I am using the latest version 2.1.1. At first I thought I did something wrong, but after doing a separate test it seems like a bug in the save function. Group tags are not written into the output file.
Here is the XML output of the KDBX file I get:
https://gist.github.com/mstoecklein/e2686de4c22a263240e75db6745df6ac
The text was updated successfully, but these errors were encountered: