From 32d29be09f796be55478b329d7568317ff32c596 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Wed, 28 Aug 2024 11:09:26 +0200 Subject: [PATCH] Change the comment above the URL parser function --- src/utils/urlParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/urlParser.js b/src/utils/urlParser.js index 1aed5b0..6ab48bf 100644 --- a/src/utils/urlParser.js +++ b/src/utils/urlParser.js @@ -1,6 +1,6 @@ const url = require("url"); -// SVR.JS URL parser function (needed only for SVR.JS 2.x and 3.x mods) +// SVR.JS URL parser function (compatible with legacy Node.JS URL parsing function) function parseURL(uri, prepend) { // Replace newline characters with its respective URL encodings uri = uri.replace(/\r/g, "%0D").replace(/\n/g, "%0A");