Эх сурвалжийг харах

Fix typo in name of method to check if video should not be received

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez 3 жил өмнө
parent
commit
3274c1e1fa

+ 2 - 2
app/src/main/java/com/nextcloud/talk/webrtc/PeerConnectionWrapper.java

@@ -258,7 +258,7 @@ public class PeerConnectionWrapper {
         return isMCUPublisher;
         return isMCUPublisher;
     }
     }
 
 
-    private boolean shouldReceiveVideo() {
+    private boolean shouldNotReceiveVideo() {
         for (MediaConstraints.KeyValuePair keyValuePair : mediaConstraints.mandatory) {
         for (MediaConstraints.KeyValuePair keyValuePair : mediaConstraints.mandatory) {
             if ("OfferToReceiveVideo".equals(keyValuePair.getKey())) {
             if ("OfferToReceiveVideo".equals(keyValuePair.getKey())) {
                 return !Boolean.parseBoolean(keyValuePair.getValue());
                 return !Boolean.parseBoolean(keyValuePair.getValue());
@@ -456,7 +456,7 @@ public class PeerConnectionWrapper {
             if (peerConnection != null) {
             if (peerConnection != null) {
                 if (peerConnection.getLocalDescription() == null) {
                 if (peerConnection.getLocalDescription() == null) {
 
 
-                    if (shouldReceiveVideo()) {
+                    if (shouldNotReceiveVideo()) {
                         for (RtpTransceiver t : peerConnection.getTransceivers()) {
                         for (RtpTransceiver t : peerConnection.getTransceivers()) {
                             if (t.getMediaType().equals(MediaStreamTrack.MediaType.MEDIA_TYPE_VIDEO)) {
                             if (t.getMediaType().equals(MediaStreamTrack.MediaType.MEDIA_TYPE_VIDEO)) {
                                 t.stop();
                                 t.stop();