|
|
|
|
4
|
import { JitsiConferenceErrors, JitsiConferenceEvents } from '../base/lib-jitsi-meet';
|
4
|
import { JitsiConferenceErrors, JitsiConferenceEvents } from '../base/lib-jitsi-meet';
|
5
|
import { getFirstLoadableAvatarUrl, getParticipantDisplayName } from '../base/participants';
|
5
|
import { getFirstLoadableAvatarUrl, getParticipantDisplayName } from '../base/participants';
|
6
|
import { MiddlewareRegistry, StateListenerRegistry } from '../base/redux';
|
6
|
import { MiddlewareRegistry, StateListenerRegistry } from '../base/redux';
|
|
|
7
|
+import { isTestModeEnabled } from '../base/testing';
|
7
|
import { NOTIFICATION_TYPE, showNotification } from '../notifications';
|
8
|
import { NOTIFICATION_TYPE, showNotification } from '../notifications';
|
8
|
import { isPrejoinPageEnabled } from '../prejoin/functions';
|
9
|
import { isPrejoinPageEnabled } from '../prejoin/functions';
|
9
|
|
10
|
|
|
|
|
|
193
|
break;
|
194
|
break;
|
194
|
}
|
195
|
}
|
195
|
|
196
|
|
196
|
- dispatch(showNotification(notificationProps, 5000));
|
|
|
|
|
197
|
+ dispatch(showNotification(notificationProps, isTestModeEnabled(getState()) ? undefined : 5000));
|
197
|
}
|
198
|
}
|