summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-07 10:21:42 +0200
committerGitHub <noreply@github.com>2021-08-07 10:21:42 +0200
commit0d09629f2b6cb9f24c97da9ba5b429a546cdbad5 (patch)
tree71ee8d76c40f87cc87172b4200c943a99338bf3a
parentMerge branch 'master' of https://github.com/fosscord/fosscord-api (diff)
parentfixed a typo (diff)
downloadserver-0d09629f2b6cb9f24c97da9ba5b429a546cdbad5.tar.xz
Merge pull request #187 from BanTheNons/fix-typo
Fixed a typo in vanity_url
-rw-r--r--src/routes/guilds/#guild_id/vanity-url.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/guilds/#guild_id/vanity-url.ts b/src/routes/guilds/#guild_id/vanity-url.ts

index 2d210e5d..30c98d19 100644 --- a/src/routes/guilds/#guild_id/vanity-url.ts +++ b/src/routes/guilds/#guild_id/vanity-url.ts
@@ -10,7 +10,7 @@ router.get("/", async (req: Request, res: Response) => { const guild = await GuildModel.findOne({ id: guild_id }).exec(); if (!guild.vanity_url) throw new HTTPError("This guild has no vanity url", 204); - return res.json({ vanity_ur: guild.vanity_url }); + return res.json({ vanity_url: guild.vanity_url }); }); export default router;