From 14b0c86bcd56201c4ff24607d5cad09628548b6e Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Mon, 26 Sep 2022 12:42:01 +1000 Subject: 'Fix' distinct alias typeorm issue --- src/util/entities/Channel.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/util/entities/Channel.ts') diff --git a/src/util/entities/Channel.ts b/src/util/entities/Channel.ts index 577b627e..2200bfa3 100644 --- a/src/util/entities/Channel.ts +++ b/src/util/entities/Channel.ts @@ -245,11 +245,10 @@ export class Channel extends BaseClass { static async createDMChannel(recipients: string[], creator_user_id: string, name?: string) { recipients = recipients.unique().filter((x) => x !== creator_user_id); - //@ts-ignore some typeorm typescript issue - const otherRecipientsUsers = await User.find({ where: recipients.map((x) => ({ id: x })) }); - // TODO: check config for max number of recipients /** if you want to disallow note to self channels, uncomment the conditional below + + const otherRecipientsUsers = await User.find({ where: recipients.map((x) => ({ id: x })) }); if (otherRecipientsUsers.length !== recipients.length) { throw new HTTPError("Recipient/s not found"); } -- cgit 1.5.1