From e7db8d68121af1d6264fb05db29a391ff82af1f6 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Fri, 3 May 2019 12:47:26 -0700 Subject: [PATCH] fix(chat): save chat error messages into redux The proper field name is "messageType", not "type." Also using "type" would override the actionType. --- conference.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conference.js b/conference.js index 2f8947c41..5037978da 100644 --- a/conference.js +++ b/conference.js @@ -438,8 +438,8 @@ class ConferenceConnector { hasRead: true, error: code, message: msg, - timestamp: Date.now(), - type: 'error' + messageType: 'error', + timestamp: Date.now() })); } break;