Open jsilve24 opened 11 months ago
Thanks for the report! I just noticed this as well. I've been wanting to rewrite this package to use the REST server that is built into bw-cli
which would circumvent a lot of these types of errors. Just need more hours in the day 😞
I started getting this warning after upgrading to newest version (on AUR) of bw-cli and emacs-bitwarden. I tracked the error down.
Relevant error in bw-cli https://github.com/bitwarden/clients/issues/7126
What this is causing:
The bw cli is giving the following error:
which is causing
exit-code
to equal 1 and within thebitwarden-runcmd
function which then gets pickuped but misshandled within the follwing if formWhat works for me is replacing
(eq exit-code 0)
witht
for the moment.I am sure there is a better solution that bypasses this error and also doesn't simply remove the functionality of this clause but this worked for me.
Hope this helps.