* 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
7352fa9b19
commit
e9d2df58df
|
|
@ -840,7 +840,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 == 'BackingTrack') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue