openvidu-server: default value for networkCache

pull/546/head
pabloFuente 2020-09-18 15:23:22 +02:00
parent c39e16852f
commit a32351c029
1 changed files with 1 additions and 0 deletions

View File

@ -784,6 +784,7 @@ public class SessionRestController {
type = "IPCAM"; // Other possible values in the future type = "IPCAM"; // Other possible values in the future
adaptativeBitrate = adaptativeBitrate != null ? adaptativeBitrate : true; adaptativeBitrate = adaptativeBitrate != null ? adaptativeBitrate : true;
onlyPlayWithSubscribers = onlyPlayWithSubscribers != null ? onlyPlayWithSubscribers : true; onlyPlayWithSubscribers = onlyPlayWithSubscribers != null ? onlyPlayWithSubscribers : true;
networkCache = networkCache != null ? networkCache : 2000;
data = data != null ? data : ""; data = data != null ? data : "";
boolean hasAudio = true; boolean hasAudio = true;