trace origin of the issue

This commit is contained in:
MathMan05
2026-02-12 18:12:48 -06:00
committed by Rory&
parent 90c15f4dde
commit de26818c8d
+4 -1
View File
@@ -243,7 +243,10 @@ export class Message extends BaseClass {
member_id: undefined,
webhook_id: this.webhook_id ?? undefined,
application_id: undefined,
mentions: this.mentions.map((user) => user?.toPublicUser?.() ?? user ?? undefined),
mentions: this.mentions.map((user) => {
if (user && !user.toPublicUser) console.trace("toPublic user missing!!!");
return user?.toPublicUser?.() ?? user ?? undefined;
}),
nonce: this.nonce ?? undefined,
tts: this.tts ?? false,