summary refs log tree commit diff
path: root/api/src/routes/guilds
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-29 17:12:46 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-29 17:12:46 +0200
commitd0292ef96bedde2dd23962c15b2a0446b8492fb0 (patch)
tree3cd962d1ca42d4bb7f8f71bc8f8e919eb397f5a8 /api/src/routes/guilds
parentfixed tests for cdn (diff)
downloadserver-d0292ef96bedde2dd23962c15b2a0446b8492fb0.tar.xz
:bug: convert bigint -> string
Diffstat (limited to 'api/src/routes/guilds')
-rw-r--r--api/src/routes/guilds/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/guilds/index.ts b/api/src/routes/guilds/index.ts
index c158c7d4..1e83cf13 100644
--- a/api/src/routes/guilds/index.ts
+++ b/api/src/routes/guilds/index.ts
@@ -47,7 +47,7 @@ router.post("/", check(GuildCreateSchema), async (req: Request, res: Response) =
 		premium_tier: 0,
 		public_updates_channel_id: undefined,
 		rules_channel_id: undefined,
-		system_channel_flags: 0,
+		system_channel_flags: "0",
 		system_channel_id: undefined,
 		unavailable: false,
 		vanity_url_code: undefined,