FS-8219 #resolve Correctly stop the tracks.

getusermedia.stop() has been deprecated. we now need to call stop on
each individual track.
This commit is contained in:
Ken Rice 2015-09-29 11:46:15 -05:00
parent dc74c69e5f
commit dab81d4c4c

View File

@ -316,7 +316,14 @@
if(typeof self.localStream.stop == 'function') {
self.localStream.stop();
} else {
self.localStream.active = false;
if (self.localStream.active){
var tracks = self.localStream.getTracks();
console.error(tracks);
tracks.forEach(function(track, index){
console.log(track);
track.stop();
})
}
}
self.localStream = null;
}
@ -334,7 +341,14 @@
if(typeof self.options.localVideoStream.stop == 'function') {
self.options.localVideoStream.stop();
} else {
self.options.localVideoStream.active = false;
if (self.localVideoStream.active){
var tracks = self.localVideoStream.getTracks();
console.error(tracks);
tracks.forEach(function(track, index){
console.log(track);
track.stop();
})
}
}
}