From 685e0b4b7d0646b6b7012fc267e97975db3f922e Mon Sep 17 00:00:00 2001 From: hrhosni Date: Wed, 24 Feb 2021 17:31:19 +0200 Subject: [PATCH] fix: linting Signed-off-by: hrhosni --- lib/decodeOpaqueId.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/decodeOpaqueId.js b/lib/decodeOpaqueId.js index 3998af8..a428445 100644 --- a/lib/decodeOpaqueId.js +++ b/lib/decodeOpaqueId.js @@ -16,7 +16,7 @@ export default function decodeOpaqueId(opaqueId) { if (config.REACTION_SHOULD_ENCODE_IDS === false) { return { namespace: null, id: opaqueId }; } - + const [namespace, id] = Buffer .from(opaqueId, "base64") .toString("utf8")