From 054c9db49bbef6bd5a37d0204b31012d04ecaddc Mon Sep 17 00:00:00 2001 From: March 7th <71698422+aiko-chan-ai@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:38:10 +0700 Subject: [PATCH] fix `channel._recipients.filter is not function` --- src/structures/PartialGroupDMChannel.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/structures/PartialGroupDMChannel.js b/src/structures/PartialGroupDMChannel.js index 3319715..18bc377 100644 --- a/src/structures/PartialGroupDMChannel.js +++ b/src/structures/PartialGroupDMChannel.js @@ -63,6 +63,8 @@ class PartialGroupDMChannel extends Channel { */ this.invites = new Collection(); + this._recipients = []; + this._patch(data); }