~singpolyma/cheogram-android

ecc6b1ed0938c6c09cd6b314a4a378c74c8f4d7b — Stephen Paul Weber 1 year, 1 month ago 4d26b28 2.12.8-3
Get callback off the webrtc thread

To avoid internal libwebrtc threading checks causing issues in some cases.
1 files changed, 1 insertions(+), 1 deletions(-)

M src/main/java/eu/siacs/conversations/xmpp/jingle/WebRTCWrapper.java
M src/main/java/eu/siacs/conversations/xmpp/jingle/WebRTCWrapper.java => src/main/java/eu/siacs/conversations/xmpp/jingle/WebRTCWrapper.java +1 -1
@@ 155,7 155,7 @@ public class WebRTCWrapper {
                        PeerConnection.IceGatheringState iceGatheringState) {
                    Log.d(EXTENDED_LOGGING_TAG, "onIceGatheringChange(" + iceGatheringState + ")");
                    if (iceGatheringState == PeerConnection.IceGatheringState.COMPLETE) {
                        eventCallback.onIceGatheringComplete(iceCandidates);
                        execute(() -> eventCallback.onIceGatheringComplete(iceCandidates));
                    }
                }