-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to unlock session #84
Comments
The issue seems to be that the newer bitwarden-cli for some reason now outputs
instead of just the hash during unlock, as expected by bitwarden-rofi. Temporary workaround: Add ask_password() {
rm $CACHE_FILE
mpw=$(printf '' | rofi -dmenu -p "Master Password" -password -l 0 ${ROFI_OPTIONS[@]}) || exit $?
if ! out="$(bw --raw --nointeraction unlock "$mpw" 2>&1 | grep -vF 'mac failed.')"; then
exit_error 1 "Could not unlock vault: $out"
fi
echo "$out"
} |
Can confirm this is working. Thank you! |
Sorted me out too. Thanks for this! |
Since the latest
bitwarden-cli 2023.12.0-1
Arch package, I have not been able to unlock my BW session using my master password. Downgrading tobitwarden-cli 2023.10.0-1
resolved the issue.The text was updated successfully, but these errors were encountered: