Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThomas Schmid <schmid-thomas@gmx.net>2020-06-02 20:43:28 +0300
committerThomas Schmid <schmid-thomas@gmx.net>2020-06-02 20:43:28 +0300
commit7759bf9e38421ada90e15d47998ba631f1fed363 (patch)
tree0d38bbf2793e5dd0b5e4729da5931a98afdf20c0 /tools
parent1461ebd83907265ad91675078badfc754909eaec (diff)
Remove some more jquery
Diffstat (limited to 'tools')
-rw-r--r--tools/Server/Server.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Server/Server.js b/tools/Server/Server.js
index f672e9a2..f6bea087 100644
--- a/tools/Server/Server.js
+++ b/tools/Server/Server.js
@@ -140,7 +140,7 @@
if (url.pathname.startsWith(`/${GUI_URL}`)) {
filePath = GUI_PATH + url.pathname.substr(GUI_URL.length);
} else if (url.pathname.startsWith(`/${TEST_URL}`)) {
- filePath = TEST_PATH + url.pathname.url.substr(TEST_URL.length);
+ filePath = TEST_PATH + url.pathname.substr(TEST_URL.length);
} else {
doIndex(response);
return;