VRFS-1848 : Fix JS syntax error
This commit is contained in:
parent
832cd9bf31
commit
f4765d03f9
|
|
@ -88,7 +88,10 @@
|
|||
videoShared=false;
|
||||
}
|
||||
|
||||
function SessStartVideoSharing(bitrate=0) {
|
||||
function SessStartVideoSharing(bitrate) {
|
||||
if (!bitrate || typeof(bitrate)=="undefined") {
|
||||
bitrate = 0
|
||||
}
|
||||
videoShared=true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue