diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/model/VideoConfOptions.as b/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/model/VideoConfOptions.as index 1f3e1c8bbd..395a715742 100755 --- a/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/model/VideoConfOptions.as +++ b/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/model/VideoConfOptions.as @@ -58,6 +58,9 @@ package org.bigbluebutton.modules.videoconf.model if (vxml.@viewerWindowLocation != undefined) { viewerWindowLocation = vxml.@viewerWindowLocation.toString().toUpperCase(); } + if (vxml.@camKeyFrameInterval != undefined) { + camKeyFrameInterval = Number(vxml.@camKeyFrameInterval.toString()); + } if (vxml.@camModeFps != undefined) { camModeFps = Number(vxml.@camModeFps.toString()); }