From c9f34df53f7d3e1f3f067e12ae6d23f092dc73fc Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sun, 26 Jun 2022 23:14:10 +1000 Subject: Start of custom login and discord oauth flow --- util/src/entities/Channel.ts | 1 + util/src/util/Event.ts | 1 + 2 files changed, 2 insertions(+) (limited to 'util/src') diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts index f3c40c83..c2c6fbbc 100644 --- a/util/src/entities/Channel.ts +++ b/util/src/entities/Channel.ts @@ -245,6 +245,7 @@ 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 diff --git a/util/src/util/Event.ts b/util/src/util/Event.ts index bb624051..20a638a0 100644 --- a/util/src/util/Event.ts +++ b/util/src/util/Event.ts @@ -62,6 +62,7 @@ export async function listenEvent(event: string, callback: (event: EventOpts) => msg.type === "event" && msg.id === event && callback({ ...msg.event, cancel }); }; + //@ts-ignore apparently theres no function addListener with this signature process.addListener("message", listener); process.setMaxListeners(process.getMaxListeners() + 1); -- cgit 1.5.1