mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
Include Sticker and Emoji events in Logs
This commit is contained in:
parent
1e69da7cbc
commit
3886d2d1dd
7 changed files with 169 additions and 1 deletions
|
@ -212,7 +212,7 @@ export function differenceToString(diff: Map<string, { was: any; is: any }>): st
|
|||
let toReturn = "";
|
||||
diff = prettyDifference(diff);
|
||||
for (const [key, difference] of diff) {
|
||||
toReturn += `${key[0].toUpperCase() + key.slice(1)}: \`${difference.was}\` ➜ \`${difference.is}\`\n`;
|
||||
toReturn += `**${key[0].toUpperCase() + key.slice(1)}**: \`${difference.was}\` ➜ \`${difference.is}\`\n`;
|
||||
}
|
||||
return toReturn;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue