summary refs log tree commit diff
path: root/api
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-04-23 01:28:03 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-04-23 01:28:03 +1000
commit1319e0c04e21bb07badede04297bbc4cf8d61854 (patch)
treea24ec8f28be00aa4fd2e69eae6389ff807ba701b /api
parentFixed ability for user to edit any property of themselves, including `rights`... (diff)
downloadserver-1319e0c04e21bb07badede04297bbc4cf8d61854.tar.xz
Can no longer send messages to channel types that do not support it ( categories, voice etc )
Diffstat (limited to 'api')
-rw-r--r--api/src/routes/channels/#channel_id/messages/index.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/api/src/routes/channels/#channel_id/messages/index.ts b/api/src/routes/channels/#channel_id/messages/index.ts
index af0ae32d..34cc5ff8 100644
--- a/api/src/routes/channels/#channel_id/messages/index.ts
+++ b/api/src/routes/channels/#channel_id/messages/index.ts
@@ -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