|
|
@@ -96,9 +96,11 @@ StateListenerRegistry.register(
|
|
96
|
96
|
*/
|
|
97
|
97
|
function _addChatMsgListener(conference, { dispatch, getState }) {
|
|
98
|
98
|
if ((typeof interfaceConfig === 'object' && interfaceConfig.filmStripOnly)
|
|
99
|
|
- || (typeof APP !== 'undefined' && !isButtonEnabled('chat'))) {
|
|
|
99
|
+ || (typeof APP !== 'undefined' && !isButtonEnabled('chat'))
|
|
|
100
|
+ || getState()['features/base/config'].iAmRecorder) {
|
|
100
|
101
|
// We don't register anything on web if we're in filmStripOnly mode, or
|
|
101
|
102
|
// the chat button is not enabled in interfaceConfig.
|
|
|
103
|
+ // or we are in iAmRecorder mode
|
|
102
|
104
|
return;
|
|
103
|
105
|
}
|
|
104
|
106
|
|