From 1a430e1b4a682b13bd586483af0e5f80b3b07458 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Sat, 25 Oct 2025 10:20:01 -0600 Subject: [PATCH] Fix log --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 78e09ce..0126722 100644 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ const main = async () => { const extension = match[2]; const target = match[3]; - forwards[`${type}/${extension}`] = target; + forwards[`${type}/${extension}`] = target.replace(/\s+$/, ''); } } }