diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2023-04-27 18:28:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 18:28:00 +0300 |
commit | 21a589c2f64187fd4c92c871299d9b597173f98d (patch) | |
tree | 7e59abadd0a7a6dc5390067fd6f770d1d8e8bf46 /src/api/routes/invites/index.ts | |
parent | start listening before starting components in bundle (diff) | |
download | server-21a589c2f64187fd4c92c871299d9b597173f98d.tar.xz |
Rename the guild feature to match discord.com
discord.com has this too, and it is called `INVITES_DISABLED`
Diffstat (limited to 'src/api/routes/invites/index.ts')
-rw-r--r-- | src/api/routes/invites/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/invites/index.ts b/src/api/routes/invites/index.ts index 6680e375..8bff2200 100644 --- a/src/api/routes/invites/index.ts +++ b/src/api/routes/invites/index.ts @@ -65,7 +65,7 @@ router.post( "Only intended for the staff of this server.", 401, ); - if (features.includes("INVITES_CLOSED")) + if (features.includes("INVITES_DISABLED")) throw new HTTPError("Sorry, this guild has joins closed.", 403); const invite = await Invite.joinGuild(req.user_id, code); |