pull/108/head
Martin Schleyer 2018-08-13 10:51:38 +02:00
parent b04f1cf169
commit 0c354df6e0
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ export class OpenVidu {
publishVideo: (typeof properties.publishVideo !== 'undefined') ? properties.publishVideo : true, publishVideo: (typeof properties.publishVideo !== 'undefined') ? properties.publishVideo : true,
resolution: this.isMediaStreamTrack(properties.videoSource) ? undefined : ((typeof properties.resolution !== 'undefined') ? properties.resolution : '640x480'), resolution: this.isMediaStreamTrack(properties.videoSource) ? undefined : ((typeof properties.resolution !== 'undefined') ? properties.resolution : '640x480'),
videoSource: (typeof properties.videoSource !== 'undefined') ? properties.videoSource : undefined, videoSource: (typeof properties.videoSource !== 'undefined') ? properties.videoSource : undefined,
keepTracksOnDispose: (typeof properties.videoSource !== 'undefined') ? properties.keepTracksOnDispose : false, keepTracksOnDispose: (typeof properties.keepTracksOnDispose !== 'undefined') ? properties.keepTracksOnDispose : false,
filter: properties.filter filter: properties.filter
}; };
} else { } else {