8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d473e commit a80e742Copy full SHA for a80e742
android/src/main/java/com/cloudwebrtc/webrtc/PeerConnectionObserver.java
@@ -999,6 +999,9 @@ public void getTransceivers(Result result) {
999
}
1000
1001
protected MediaStreamTrack getTransceiversTrack(String trackId) {
1002
+ if(this.configuration.sdpSemantics != PeerConnection.SdpSemantics.UNIFIED_PLAN) {
1003
+ return null;
1004
+ }
1005
MediaStreamTrack track = null;
1006
List<RtpTransceiver> transceivers = peerConnection.getTransceivers();
1007
for (RtpTransceiver transceiver : transceivers) {
0 commit comments