Skip to content
This repository has been archived by the owner on Dec 10, 2020. It is now read-only.

Commit

Permalink
Merge pull request #97 from videojs/hotfix/mse-open
Browse files Browse the repository at this point in the history
Don't double invoke mediasource.open()
  • Loading branch information
tomjohnson916 committed Jun 2, 2014
2 parents 8a98910 + 981113f commit 9373961
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified dist/video-js.swf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/VideoJS.as
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ package{
}

private function openExternalMSObject(pSrc:*):void{
ExternalInterface.call('videojs.MediaSource.open("' +pSrc+ '", "' +ExternalInterface.objectID+ '")');
ExternalInterface.call('videojs.MediaSource.open', pSrc, ExternalInterface.objectID);
}

private function onSrcCalled(pSrc:* = ""):void{
Expand Down

0 comments on commit 9373961

Please sign in to comment.