diff --git a/src/classes/User.ts b/src/classes/User.ts index a22d6320..7a71e72f 100644 --- a/src/classes/User.ts +++ b/src/classes/User.ts @@ -85,6 +85,9 @@ export class User { * User Status */ get status() { + // TODO: issue with API, upstream fix required #319 + if (!this.online) + return { text: undefined, presence: "Invisible" as const }; return this.#collection.getUnderlyingObject(this.id).status; }