summaryrefslogtreecommitdiff
path: root/examples/android/src/org
diff options
context:
space:
mode:
Diffstat (limited to 'examples/android/src/org')
-rw-r--r--examples/android/src/org/appspot/apprtc/AppRTCClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/android/src/org/appspot/apprtc/AppRTCClient.java b/examples/android/src/org/appspot/apprtc/AppRTCClient.java
index 2a4cd60..fc34777 100644
--- a/examples/android/src/org/appspot/apprtc/AppRTCClient.java
+++ b/examples/android/src/org/appspot/apprtc/AppRTCClient.java
@@ -401,7 +401,7 @@ public class AppRTCClient {
new LinkedList<PeerConnection.IceServer>();
for (int i = 0; i < servers.length(); ++i) {
JSONObject server = servers.getJSONObject(i);
- String url = server.getString("url");
+ String url = server.getString("urls");
String credential =
server.has("credential") ? server.getString("credential") : "";
ret.add(new PeerConnection.IceServer(url, "", credential));