add guard before APP in middleware.js

pull/3223/head
Radium Zheng 7 years ago
parent 5a051024e6
commit 0410af9e5e
  1. 3
      react/features/local-recording/middleware.js

@ -64,7 +64,8 @@ isFeatureEnabled
}, 10000));
};
APP.keyboardshortcut.registerShortcut('L', null, () => {
typeof APP === 'object' && typeof APP.keyboardshortcut === 'object'
&& APP.keyboardshortcut.registerShortcut('L', null, () => {
sendAnalytics(createShortcutEvent('local.recording'));
dispatch(toggleDialog(LocalRecordingInfoDialog));
}, 'keyboardShortcuts.localRecording');

Loading…
Cancel
Save