Commit ac0d1405 by Gil Sade

added ICE params to config.

parent c4b2e108
......@@ -4,3 +4,5 @@
- change the push-server path
1.0.1:
- link with 'com.ipgallery.common:utils:1.1.0' instead of 1.0.0 since google-gdata repository no longer exists
1.0.5:
- added ICE params to config
group 'com.ipgallery.common'
version '1.0.4'
version '1.0.5'
apply plugin: 'java'
apply plugin: 'maven-publish'
......
......@@ -2841,6 +2841,8 @@ public class DaoDsImpl extends DaoImplBase {
clientProfile.setAvailableVideoCodecsList(ParseClientProfileArrayParameter(nodeClientProfile.get("availableVideoCodecs")));
clientProfile.setBrand(nodeClientProfile.get("brand").asText());
clientProfile.setWebsocketServerUrl(nodeClientProfile.get("wrtcWebsocketServerUrl").asText());
clientProfile.setStunServers(nodeClientProfile.get("stunServers").toString());
clientProfile.setTurnServers(nodeClientProfile.get("turnServers").toString());
clientProfile.setLastProfileUpdate(nodeClientProfile.get("lastProfileUpdate").asLong());
}
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment