1 files changed, 6 insertions, 0 deletions
diff --git a/src/api/routes/guilds/#guild_id/vanity-url.ts b/src/api/routes/guilds/#guild_id/vanity-url.ts
index d271c976..941f463b 100644
--- a/src/api/routes/guilds/#guild_id/vanity-url.ts
+++ b/src/api/routes/guilds/#guild_id/vanity-url.ts
@@ -107,6 +107,12 @@ router.patch(
where: { guild_id, type: ChannelType.GUILD_TEXT },
});
+ if (!guild.features.includes("ALIASABLE_NAMES")) {
+ await Invite.update({ guild_id }, {
+ code: code
+ });
+ }
+
await Invite.create({
vanity_url: true,
code: code,
|