From c6028d763ee2266e3fd7d88d821726d09d264d27 Mon Sep 17 00:00:00 2001 From: s3lph <5564491+s3lph@users.noreply.github.com> Date: Thu, 18 Mar 2021 02:35:42 +0100 Subject: qute-pass userscript: Add -o flag to gopass otp invocation so the metadata arount the OTP token is omitted (cherry picked from commit 62ff0f0ec07fe11e1c72022970399725fbc475d2) --- misc/userscripts/qute-pass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/userscripts/qute-pass b/misc/userscripts/qute-pass index 8e1827935..42e21b528 100755 --- a/misc/userscripts/qute-pass +++ b/misc/userscripts/qute-pass @@ -158,6 +158,8 @@ def pass_(path): def pass_otp(path): + if arguments.mode == "gopass": + return _run_pass(['otp', '-o', path]) return _run_pass(['otp', path]) -- cgit v1.2.3-54-g00ecf