Regression: Jitsi not leaving call properly (#4511)
This commit is contained in:
parent
cf7b9a09f4
commit
6484edddb6
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { StyleSheet } from 'react-native';
|
import { BackHandler, StyleSheet } from 'react-native';
|
||||||
import JitsiMeet, { JitsiMeetView as RNJitsiMeetView } from 'react-native-jitsi-meet';
|
import JitsiMeet, { JitsiMeetView as RNJitsiMeetView } from 'react-native-jitsi-meet';
|
||||||
import BackgroundTimer from 'react-native-background-timer';
|
import BackgroundTimer from 'react-native-background-timer';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
|
@ -69,6 +69,7 @@ class JitsiMeetView extends React.Component<IJitsiMeetViewProps, IJitsiMeetViewS
|
||||||
}
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
BackHandler.addEventListener('hardwareBackPress', this.endCall);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
|
@ -78,8 +79,16 @@ class JitsiMeetView extends React.Component<IJitsiMeetViewProps, IJitsiMeetViewS
|
||||||
this.jitsiTimeout = null;
|
this.jitsiTimeout = null;
|
||||||
BackgroundTimer.stopBackgroundTimer();
|
BackgroundTimer.stopBackgroundTimer();
|
||||||
}
|
}
|
||||||
|
BackHandler.removeEventListener('hardwareBackPress', this.endCall);
|
||||||
|
if (isIOS) {
|
||||||
JitsiMeet.endCall();
|
JitsiMeet.endCall();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
endCall = () => {
|
||||||
|
JitsiMeet.endCall();
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
onConferenceWillJoin = () => {
|
onConferenceWillJoin = () => {
|
||||||
this.setState({ loading: false });
|
this.setState({ loading: false });
|
||||||
|
|
Loading…
Reference in New Issue