From 733b64f064d21241d534dc1410f15d8ad41781c1 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Nov 2023 09:13:08 +0300 Subject: [PATCH] Update parse.ts --- scripts/commands/channels/parse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/commands/channels/parse.ts b/scripts/commands/channels/parse.ts index 44a632b7..97b23276 100644 --- a/scripts/commands/channels/parse.ts +++ b/scripts/commands/channels/parse.ts @@ -58,7 +58,7 @@ async function main() { let output = new Collection() parsedChannels.forEach((channel: Channel) => { const found: Channel | undefined = channels.first( - (_channel: Channel) => _channel.site_id === channel.site_id + (_channel: Channel) => _channel.site_id == channel.site_id ) if (found) {