summary refs log tree commit diff
path: root/api/src/routes/guilds/index.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-17 23:42:40 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-17 23:42:40 +0200
commitc20f4b4ef539a44c8e091815c5603acbf0fa8d04 (patch)
tree49e32c077cec3734d939ec4d4bb26980239f593a /api/src/routes/guilds/index.ts
parent:bug: fix vanity url (diff)
downloadserver-c20f4b4ef539a44c8e091815c5603acbf0fa8d04.tar.xz
:bug: fix body parse treating null not as undefined (except for icons/avatars)
Diffstat (limited to '')
-rw-r--r--api/src/routes/guilds/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/src/routes/guilds/index.ts b/api/src/routes/guilds/index.ts

index 2334bb9c..2e68d953 100644 --- a/api/src/routes/guilds/index.ts +++ b/api/src/routes/guilds/index.ts
@@ -12,10 +12,10 @@ export interface GuildCreateSchema { */ name: string; region?: string; - icon?: string; + icon?: string | null; channels?: ChannelModifySchema[]; guild_template_code?: string; - system_channel_id?: string | null; + system_channel_id?: string; rules_channel_id?: string; }