3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-23 17:45:03 +00:00

Hotfix 18

This commit is contained in:
Dragory 2021-08-19 02:17:51 +03:00
parent b497c5b274
commit 46b6d95d1f

View file

@ -30,6 +30,10 @@ export const LogsChannelUpdateEvt = logsEvt({
event: "channelUpdate",
async listener(meta) {
if (meta.args.oldChannel?.partial) {
return;
}
const diff = getScalarDifference(meta.args.oldChannel, meta.args.newChannel);
const differenceString = differenceToString(diff);