utility.presence: null check custom status emotes

This commit is contained in:
Cynthia Foxwell 2022-10-10 13:40:10 -06:00
parent a06894bc86
commit cb4dee574d
1 changed files with 1 additions and 1 deletions

View File

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