mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-25 16:12:09 +00:00
Can no longer send messages to channel types that do not support it ( categories, voice etc )
This commit is contained in:
@@ -183,6 +183,9 @@ router.post(
|
||||
}
|
||||
}
|
||||
const channel = await Channel.findOneOrFail({ where: { id: channel_id }, relations: ["recipients", "recipients.user"] });
|
||||
if (!channel.isWritable()) {
|
||||
throw new HTTPError(`Cannot send messages to channel of type ${channel.type}`, 400)
|
||||
}
|
||||
|
||||
const embeds = body.embeds || [];
|
||||
if (body.embed) embeds.push(body.embed);
|
||||
@@ -220,6 +223,8 @@ router.post(
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
//Fix for the client bug
|
||||
delete message.member
|
||||
|
||||
Reference in New Issue
Block a user