From 8fc45778c3463a01041a4e01428c629e6b49b457 Mon Sep 17 00:00:00 2001 From: ihatespawn <168680471+ihatespawn@users.noreply.github.com> Date: Sat, 1 Jun 2024 14:08:41 +0200 Subject: [PATCH] fix: pattern --- src/modules/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/config.js b/src/modules/config.js index 530c5f0b..a62a3e89 100644 --- a/src/modules/config.js +++ b/src/modules/config.js @@ -8,7 +8,7 @@ const servicesConfigJson = loadJSON("./src/modules/processing/servicesConfig.jso Object.values(servicesConfigJson.config).forEach(service => { service.patterns = service.patterns.map( pattern => new UrlPattern(pattern, { - segmentValueCharset: UrlPattern.defaultOptions.segmentValueCharset + '@\\.' + segmentValueCharset: UrlPattern.defaultOptions.segmentValueCharset + '@\\.:' }) ) })