summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-15 10:02:26 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-15 10:02:26 +0200
commit15b1dee513a96107363e9a76a132324f6f338b1e (patch)
tree1035116ddbaacc5fcc5ae250a6592eb88f78f75c
parentFix nullables, fix user settings hanging stuff (diff)
downloadserver-15b1dee513a96107363e9a76a132324f6f338b1e.tar.xz
change dev panel path, we missed this one...
-rw-r--r--src/api/middlewares/TestClient.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/middlewares/TestClient.ts b/src/api/middlewares/TestClient.ts
index a47ff396..c8ea57f6 100644
--- a/src/api/middlewares/TestClient.ts
+++ b/src/api/middlewares/TestClient.ts
@@ -79,7 +79,7 @@ export default function TestClient(app: Application) {
 
 		if(!useTestClient) return res.send("Test client is disabled on this instance. Use a stand-alone client to connect this instance.")
 		
-		res.send(fs.readFileSync(path.join(__dirname, "..", "..", "client_test", "developers.html"), { encoding: "utf8" }));
+		res.send(fs.readFileSync(path.join(__dirname, "..", "..", "..", "assets", "developers.html"), { encoding: "utf8" }));
 	});
 	app.get("*", (req: Request, res: Response) => {
 		const { useTestClient } = Config.get().client;