fix: should use typingIds not recipientIds

This commit is contained in:
Paul Makles
2023-04-14 12:55:25 +01:00
parent 8049ccf93b
commit 4490ead0b6
+1 -1
View File
@@ -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;
}
/**