From 55559135864ff6c1afa633f92f6266b6de5711ef Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 8 Nov 2020 22:58:49 -0500 Subject: [PATCH] fixes --- src/api/loc.sh/routes/internal.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/loc.sh/routes/internal.ts b/src/api/loc.sh/routes/internal.ts index 0b9b18e..3569dbb 100644 --- a/src/api/loc.sh/routes/internal.ts +++ b/src/api/loc.sh/routes/internal.ts @@ -93,7 +93,7 @@ export default class Internal extends Route { if (!customer) return res.sendStatus(404); await axios({ method: 'get', - url: `https://api.cloud.libraryofcode.org/wh/t2?userID=${customer.userID}&auth=${this.server.client.config.internalKey}`, + url: `https://api.cloud.libraryofcode.org/wh/t3?userID=${customer.userID}&auth=${this.server.client.config.internalKey}`, }); res.sendStatus(200); } @@ -104,7 +104,7 @@ export default class Internal extends Route { if (!customer) return res.sendStatus(404); await axios({ method: 'get', - url: `https://api.cloud.libraryofcode.org/wh/t2-rm?userID=${customer.userID}&auth=${this.server.client.config.internalKey}`, + url: `https://api.cloud.libraryofcode.org/wh/t3-rm?userID=${customer.userID}&auth=${this.server.client.config.internalKey}`, }); return res.sendStatus(200); }