Skip to content

Commit

Permalink
fix MRecordRTC reference error (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Nov 1, 2017
1 parent 07c3c54 commit 16b310a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
videojs-record changelog
========================

2.0.1 - unreleased
------------------

- Fix `MRecordRTC` reference error (#177)


2.0.0 - 2017/10/05
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/js/engine/record-rtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class RecordRTCEngine extends RecordEngine {
this.debug = debug;

// setup RecordRTC
this.engine = new MRecordRTC();
this.engine = new RecordRTC.MRecordRTC();
this.engine.mediaType = this.mediaType;
this.engine.disableLogs = !this.debug;
this.engine.mimeType = this.mimeType;
Expand Down

0 comments on commit 16b310a

Please sign in to comment.