[FIX] Error when normalizing empty messages (#1532)
This commit is contained in:
parent
1096d50f76
commit
32bba0fc53
|
@ -18,6 +18,9 @@ function normalizeAttachments(msg) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default (msg) => {
|
export default (msg) => {
|
||||||
|
if (!msg) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
msg = normalizeAttachments(msg);
|
msg = normalizeAttachments(msg);
|
||||||
msg.reactions = msg.reactions || [];
|
msg.reactions = msg.reactions || [];
|
||||||
msg.unread = msg.unread || false;
|
msg.unread = msg.unread || false;
|
||||||
|
|
Loading…
Reference in New Issue