diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-15 10:02:26 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-15 10:02:26 +0200 |
commit | 15b1dee513a96107363e9a76a132324f6f338b1e (patch) | |
tree | 1035116ddbaacc5fcc5ae250a6592eb88f78f75c | |
parent | Fix nullables, fix user settings hanging stuff (diff) | |
download | server-15b1dee513a96107363e9a76a132324f6f338b1e.tar.xz |
change dev panel path, we missed this one...
-rw-r--r-- | src/api/middlewares/TestClient.ts | 2 |
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; |