summary refs log tree commit diff
path: root/src/routes/channels/#channel_id/webhooks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/channels/#channel_id/webhooks.ts')
-rw-r--r--src/routes/channels/#channel_id/webhooks.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/routes/channels/#channel_id/webhooks.ts b/src/routes/channels/#channel_id/webhooks.ts

index b60f4d68..6c1aea2a 100644 --- a/src/routes/channels/#channel_id/webhooks.ts +++ b/src/routes/channels/#channel_id/webhooks.ts
@@ -11,7 +11,6 @@ const router: Router = Router(); router.post("/", check({ name: new Length(String, 1, 80), $avatar: String }), async (req: Request, res: Response) => { const channel_id = req.params.channel_id; const channel = await ChannelModel.findOne({ id: channel_id }, { guild_id: true, type: true }).exec(); - if (!channel) throw new HTTPError("Channel not found", 404); isTextChannel(channel.type); if (!channel.guild_id) throw new HTTPError("Not a guild channel", 400);