forked from Galactic/modmail
bugfix
This commit is contained in:
parent
fc1d74d800
commit
355b671aa5
@ -166,7 +166,8 @@ class ChannelHandler {
|
|||||||
// eslint-disable-next-line camelcase
|
// eslint-disable-next-line camelcase
|
||||||
icon_url: user.displayAvatarURL({ dynamic: true })
|
icon_url: user.displayAvatarURL({ dynamic: true })
|
||||||
},
|
},
|
||||||
description: entry.content,
|
// eslint-disable-next-line no-nested-ternary
|
||||||
|
description: entry.content && entry.content.length ? entry.content.length > 2000 ? `${entry.content.substring(0, 2000)}...\n\n**Content cut off**` : entry.content : `**__MISSING CONTENT__**`,
|
||||||
color: mem?.highestRoleColor || 0,
|
color: mem?.highestRoleColor || 0,
|
||||||
fields: [],
|
fields: [],
|
||||||
timestamp: new Date(entry.timestamp)
|
timestamp: new Date(entry.timestamp)
|
||||||
|
Loading…
Reference in New Issue
Block a user