Skip to content

Commit

Permalink
Fixing variable name
Browse files Browse the repository at this point in the history
As reported in [1], AppRTC does not work without an ICE server because
of a wrong assignment.

This pull reuqest should fix.

[1] - webrtc/apprtc#437
  • Loading branch information
BlackNightFury committed Apr 28, 2017
1 parent 5518a39 commit 58e1d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app_engine/apprtc.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def get_room_parameters(request, room_id, client_id, is_initiator):
ice_server_url = constants.ICE_SERVER_URL_TEMPLATE % \
(ice_server_base_url, constants.ICE_SERVER_API_KEY)
else:
ice_server_base_url = ''
ice_server_url = ''

# TODO(jansson): Remove this once CEOD is deprecated.
turn_url = constants.TURN_URL_TEMPLATE % \
Expand Down

0 comments on commit 58e1d4b

Please sign in to comment.