Closed shemeshg closed 1 year ago
Describe the bug A clear and concise description of what the bug is.
in pass we have (line 101)
pass
local gpg_id while read -r gpg_id; do gpg_id="${gpg_id%%#*}" # strip comment [[ -n $gpg_id ]] || continue GPG_RECIPIENT_ARGS+=( "-r" "$gpg_id" ) GPG_RECIPIENTS+=( "$gpg_id" ) done < "$current"
however QtPass consider the complete line as UserId and no whatever before the ' # ' only
To Reproduce Steps to reproduce the behavior: Create gpg_id entry in the .gpg_id file with remarks
21347213469hdsaklfha # username <username@whatever.com>
Expected behavior QtPass should not care if entry has ramarks or not.
Desktop (please complete the following information):
OS/Distribution: [ Ubuntu 20.04]
Latest from git pull
macosx
probably fine tune of issue #452
Fxied in 1.4.0
Still not fixed therefore created PR #658, Tested and with the PR, the users with comment in the gpg_id are now recognized.
gpg_id
Describe the bug A clear and concise description of what the bug is.
in
pass
we have (line 101)however QtPass consider the complete line as UserId and no whatever before the ' # ' only
To Reproduce Steps to reproduce the behavior: Create gpg_id entry in the .gpg_id file with remarks
Expected behavior QtPass should not care if entry has ramarks or not.
Desktop (please complete the following information):
OS/Distribution: [ Ubuntu 20.04]
Latest from git pull
macosx
Latest from git pull
probably fine tune of issue #452