|
@@ -242,11 +242,14 @@ export function joinConferenceWithoutAudio() {
|
242
|
242
|
*/
|
243
|
243
|
export function makePrecallTest(conferenceOptions: Object) {
|
244
|
244
|
return async function(dispatch: Function) {
|
245
|
|
- await JitsiMeetJS.precallTest.init(conferenceOptions);
|
246
|
|
-
|
247
|
|
- const results = await JitsiMeetJS.precallTest.execute();
|
|
245
|
+ try {
|
|
246
|
+ await JitsiMeetJS.precallTest.init(conferenceOptions);
|
|
247
|
+ const results = await JitsiMeetJS.precallTest.execute();
|
248
|
248
|
|
249
|
|
- dispatch(setPrecallTestResults(results));
|
|
249
|
+ dispatch(setPrecallTestResults(results));
|
|
250
|
+ } catch (error) {
|
|
251
|
+ logger.debug('Failed to execute pre call test - ', error);
|
|
252
|
+ }
|
250
|
253
|
};
|
251
|
254
|
}
|
252
|
255
|
|