mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-25 05:55:34 +00:00
trace origin of the issue
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user