From e949087c539a7a71761f01992528e8b0f2e29bfd Mon Sep 17 00:00:00 2001 From: C85297 <95289555+C85297@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:33:47 +0100 Subject: [PATCH] Fix lint --- src/core/operations/URLEncode.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/URLEncode.mjs b/src/core/operations/URLEncode.mjs index 9ea9f365..99eec91d 100644 --- a/src/core/operations/URLEncode.mjs +++ b/src/core/operations/URLEncode.mjs @@ -52,7 +52,7 @@ class URLEncode extends Operation { encodeBytes(bytes, encodeAll) { const safeChars = encodeAll ? /^[A-Za-z0-9]$/ : - /^[A-Za-z0-9:/?#\[\]@!$&'\(\)*+,;=%]$/; + /^[A-Za-z0-9:/?#[\]@!$&'()*+,;=%]$/; let output = "";