From b2ea475512479827a8899b72356f52010a3b4a9c Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Fri, 8 Mar 2024 16:39:54 -0800 Subject: [PATCH] fix empty issuer in uri --- lib/hotp.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/hotp.js b/lib/hotp.js index 5e20ec6..7741a19 100644 --- a/lib/hotp.js +++ b/lib/hotp.js @@ -277,6 +277,7 @@ class HMACBasedOneTimePassword { static get _qrURIDefaultOptions() { return { + issuer: '', scheme: 'otpauth', type: this._type, }; -- 2.44.2