|
@@ -1,5 +1,7 @@
|
|
1
|
+import { CONFERENCE_JOINED } from '../base/conference';
|
1
|
2
|
import { MiddlewareRegistry } from '../base/redux';
|
2
|
3
|
|
|
4
|
+import { setInfoDialogVisibility } from './actions';
|
3
|
5
|
import { UPDATE_DIAL_IN_NUMBERS_FAILED } from './actionTypes';
|
4
|
6
|
|
5
|
7
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
|
@@ -15,6 +17,10 @@ MiddlewareRegistry.register(store => next => action => {
|
15
|
17
|
const result = next(action);
|
16
|
18
|
|
17
|
19
|
switch (action.type) {
|
|
20
|
+ case CONFERENCE_JOINED:
|
|
21
|
+ store.dispatch(setInfoDialogVisibility(true));
|
|
22
|
+ break;
|
|
23
|
+
|
18
|
24
|
case UPDATE_DIAL_IN_NUMBERS_FAILED:
|
19
|
25
|
logger.error(
|
20
|
26
|
'Error encountered while fetching dial-in numbers:',
|