utility.presence: null check custom status emotes try 2

This commit is contained in:
Cynthia Foxwell 2022-10-10 13:42:02 -06:00
parent cb4dee574d
commit 03feb6d3ae
1 changed files with 8 additions and 6 deletions

View File

@ -728,12 +728,14 @@ presence.callback = async function (msg, line) {
const activity = target.presence.activities[index];
if (activity.type == 4) {
let emote = "";
if (activity.emoji?.id) {
emote = `<${activity.emoji.animated ? "a" : ""}:${
activity.emoji.name
}:${activity.emoji.id}>`;
} else {
emote = activity.emoji.name;
if (activity.emoji) {
if (activity.emoji.id) {
emote = `<${activity.emoji.animated ? "a" : ""}:${
activity.emoji.name
}:${activity.emoji.id}>`;
} else {
emote = activity.emoji.name;
}
}
embeds.push({