From 4490ead0b63dc79a3e8c7b7ac35bb84ca3fd6a97 Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Fri, 14 Apr 2023 12:55:25 +0100 Subject: [PATCH] fix: should use typingIds not recipientIds --- src/classes/Channel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/Channel.ts b/src/classes/Channel.ts index 0e88d76b..3786c0ad 100644 --- a/src/classes/Channel.ts +++ b/src/classes/Channel.ts @@ -111,7 +111,7 @@ export class Channel { * User ids of people currently typing in channel */ get typingIds() { - return this.#collection.getUnderlyingObject(this.id).recipientIds; + return this.#collection.getUnderlyingObject(this.id).typingIds; } /**