diff --git a/src/routes/auth/register.ts b/src/routes/auth/register.ts index 1a02667..265516d 100644 --- a/src/routes/auth/register.ts +++ b/src/routes/auth/register.ts @@ -77,7 +77,7 @@ if (email) { // replace all dots and chars after +, if its a gmail.com email - if (!adjusted_email) throw FieldErrors({ email: { code: "INVALID_EMAIL", message: "Invalid Email format" } }); + if (!adjusted_email) throw FieldErrors({ email: { code: "INVALID_EMAIL", message: req.t("auth:register.INVALID_EMAIL") } }); // check if there is already an account with this email const exists = await UserModel.findOne({ email: adjusted_email }).exec(); diff --git a/src/routes/gateway.ts b/src/routes/gateway.ts index edbb889..cab685e 100644 --- a/src/routes/gateway.ts +++ b/src/routes/gateway.ts @@ -3,7 +3,7 @@ const router = Router(); router.get("/", (req, res) => { - res.send({ url: "ws://localhost:2000" }); + res.send({ url: "ws://localhost:3002" }); }); export default router; diff --git a/src/start.ts b/src/start.ts index 11e1594..8d5c33c 100644 --- a/src/start.ts +++ b/src/start.ts @@ -23,7 +23,7 @@ }); } else { var port = Number(process.env.PORT); - if (isNaN(port)) port = 1000; + if (isNaN(port)) port = 3001; const server = new FosscordServer({ port }); server.start().catch(console.error);