Skip to content

Commit

Permalink
Fix rtmp rtmpSourceHandler calls to tech
Browse files Browse the repository at this point in the history
  • Loading branch information
matteos authored and heff committed Dec 19, 2014
1 parent 45b3601 commit 169b498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/media/flash.rtmp.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ vjs.Flash.rtmpSourceHandler.canHandleSource = function(source){
vjs.Flash.rtmpSourceHandler.handleSource = function(source, tech){
var srcParts = vjs.Flash.streamToParts(source.src);

tech.setRtmpConnection(srcParts.connection);
tech.setRtmpStream(srcParts.stream);
tech['setRtmpConnection'](srcParts.connection);
tech['setRtmpStream'](srcParts.stream);
};

// Register the native source handler
Expand Down

0 comments on commit 169b498

Please sign in to comment.