From d05092c2b8bce0808250c31c54ef3574bf0a72e2 Mon Sep 17 00:00:00 2001 From: Mikael <46541386+ahnl@users.noreply.github.com> Date: Tue, 16 Apr 2024 19:54:25 +0300 Subject: [PATCH] fix(github): redirect after join org thanks to @onnilinnala for finding this bug :D --- src/routes/github.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/github.js b/src/routes/github.js index 2bae104..4bd1219 100644 --- a/src/routes/github.js +++ b/src/routes/github.js @@ -85,7 +85,7 @@ router.get("/authorized", async (req, res) => { }) ) - return res.redirect("https://testausserveri.fi/githubJoined") + return res.redirect("https://github.com/testausserveri") }) export default router