summary refs log tree commit diff
path: root/api/src/routes/channels/#channel_id/recipients.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/channels/#channel_id/recipients.ts')
-rw-r--r--api/src/routes/channels/#channel_id/recipients.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/channels/#channel_id/recipients.ts b/api/src/routes/channels/#channel_id/recipients.ts
index e6466211..28d5607d 100644
--- a/api/src/routes/channels/#channel_id/recipients.ts
+++ b/api/src/routes/channels/#channel_id/recipients.ts
@@ -28,7 +28,7 @@ router.put("/:user_id", route({}), async (req: Request, res: Response) => {
 			throw DiscordApiErrors.INVALID_RECIPIENT; //TODO is this the right error?
 		}
 
-		channel.recipients!.push(new Recipient({ channel_id: channel_id, user_id: user_id }));
+		channel.recipients!.push(new Recipient({ channel_id, user_id: user_id }));
 		await channel.save();
 
 		await emitEvent({