[FIX] Notification stream throwing an error when there isn't a message on payload (#2637)
This commit is contained in:
parent
31ae5dab36
commit
ef67665f58
|
@ -355,7 +355,7 @@ export default function subscribeRooms() {
|
||||||
notification.avatar = RocketChat.getRoomAvatar(room);
|
notification.avatar = RocketChat.getRoomAvatar(room);
|
||||||
|
|
||||||
// If it's from a encrypted room
|
// If it's from a encrypted room
|
||||||
if (message.t === E2E_MESSAGE_TYPE) {
|
if (message?.t === E2E_MESSAGE_TYPE) {
|
||||||
// Decrypt this message content
|
// Decrypt this message content
|
||||||
const { msg } = await Encryption.decryptMessage({ ...message, rid });
|
const { msg } = await Encryption.decryptMessage({ ...message, rid });
|
||||||
// If it's a direct the content is the message decrypted
|
// If it's a direct the content is the message decrypted
|
||||||
|
|
Loading…
Reference in New Issue