* VRFS-2726 - media_type is not set for develop builds of the client; so null means Recording in develop branch
This commit is contained in:
parent
d8c000c7f7
commit
8234c4c510
|
|
@ -841,7 +841,8 @@
|
|||
context._.each(mixers, function(mixer) {
|
||||
var mediaType = mixer.media_type;
|
||||
|
||||
if(mediaType == 'RecordingTrack') {
|
||||
// mediaType == null is for backwards compat with older clients. Can be removed soon
|
||||
if(mediaType == null || mediaType == "" || mediaType == 'RecordingTrack') {
|
||||
recordingTrackMixers.push(mixer)
|
||||
} else if(mediaType == 'PeerMediaTrack' || mediaType == 'BackingTrack') {
|
||||
// BackingTrack
|
||||
|
|
|
|||
Loading…
Reference in New Issue