Index: webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java |
diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java |
index 276f7528712e548f0ab2c5be3db317e6c9959294..87ee8443a68eb52863650cdc59427e09a4436666 100644 |
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java |
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java |
@@ -280,7 +280,7 @@ public class CallActivity extends Activity implements AppRTCClient.SignalingEven |
videoHeight = displayMetrics.heightPixels; |
} |
DataChannelParameters dataChannelParameters = null; |
- if (intent.getBooleanExtra(EXTRA_DATA_CHANNEL_ENABLED, true)) { |
+ if (intent.getBooleanExtra(EXTRA_DATA_CHANNEL_ENABLED, false)) { |
dataChannelParameters = new DataChannelParameters(intent.getBooleanExtra(EXTRA_ORDERED, true), |
intent.getIntExtra(EXTRA_MAX_RETRANSMITS_MS, -1), |
intent.getIntExtra(EXTRA_MAX_RETRANSMITS, -1), intent.getStringExtra(EXTRA_PROTOCOL), |