completionId: cgen-a3b096660c854dfc98d840802ffee1b8
cgen-a3b096660c854dfc98d840802ffee1b8
This commit is contained in:
parent
a5bf327fc2
commit
e60015e38c
1 changed files with 4 additions and 6 deletions
|
|
@ -782,11 +782,9 @@ export function createServer() {
|
|||
});
|
||||
|
||||
// Discord OAuth: callback handler
|
||||
app.post("/api/discord/oauth/callback", async (req, res) => {
|
||||
const { code, state } = (req.body || {}) as {
|
||||
code?: string;
|
||||
state?: string;
|
||||
};
|
||||
app.get("/api/discord/oauth/callback", async (req, res) => {
|
||||
const code = req.query.code as string;
|
||||
const state = req.query.state as string;
|
||||
|
||||
if (!code) {
|
||||
return res
|
||||
|
|
@ -1875,7 +1873,7 @@ export function createServer() {
|
|||
"<22><> DISCORD_CLIENT_ID not set. Set it to your application's ID.",
|
||||
);
|
||||
} else {
|
||||
diagnostics.recommendations.push("✅ DISCORD_CLIENT_ID is set");
|
||||
diagnostics.recommendations.push("<EFBFBD><EFBFBD> DISCORD_CLIENT_ID is set");
|
||||
}
|
||||
|
||||
if (!publicKey) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue