This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
getPassword on windows seems to only return the first letter from the password #213
Open
Description
Trying to use the latest node-keytar from npm on electron (have used electron-rebuild electron-rebuild -f -w keytar
to get it working), this piece of code, will only log the first letter of the password. Implying that's all it gets back.
keytar.getPassword('Kassa','kassa').then((result) => {
console.log(result)
});