From 5dc407402c8807a345997e09ade87b2f9a34dbe9 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Thu, 31 May 2018 21:18:26 +0200 Subject: [PATCH] Update --- src/necronda-server.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/necronda-server.cpp b/src/necronda-server.cpp index 3d863ae..22381cf 100644 --- a/src/necronda-server.cpp +++ b/src/necronda-server.cpp @@ -221,6 +221,9 @@ string read_line(FILE* file) { string getWebRoot(string host) { string root = webroot + host; + if (host == "www.necronda.net") { + host = "www.necronda.net-new"; + } if (fileExists(root)) { return root; } else {