Skip to content

Commit

Permalink
Minor fixes in [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
muaz-khan committed Feb 25, 2016
1 parent cd483dc commit 9596ed6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion RecordRTC.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

// Last time updated: 2016-02-25 8:42:56 AM UTC
// Last time updated: 2016-02-25 9:01:21 AM UTC

// Open-Sourced: https://github.com/muaz-khan/RecordRTC

Expand Down Expand Up @@ -840,6 +840,7 @@ function MRecordRTC(mediaStream) {
}

if (!!mediaType.audio) {
recorderType = null;
if (typeof mediaType.audio === 'function') {
recorderType = mediaType.audio;
}
Expand All @@ -857,6 +858,7 @@ function MRecordRTC(mediaStream) {
}

if (!!mediaType.video) {
recorderType = null;
if (typeof mediaType.video === 'function') {
recorderType = mediaType.video;
}
Expand Down Expand Up @@ -885,6 +887,7 @@ function MRecordRTC(mediaStream) {
}

if (!!mediaType.gif) {
recorderType = null;
if (typeof mediaType.gif === 'function') {
recorderType = mediaType.gif;
}
Expand Down
Loading

0 comments on commit 9596ed6

Please sign in to comment.