Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
b110c82c
authored
2015-12-02 16:26:39 +0100
by
Josep Vinyals
Committed by
jforbes
2015-12-05 10:13:12 -0500
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix calling abort on a sourceBuffer whose mediaSource.readyState isn't 'open'
1 parent
a544105d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/videojs-hls.js
src/videojs-hls.js
View file @
b110c82
...
...
@@ -574,7 +574,7 @@ videojs.HlsHandler.prototype.resetSrc_ = function() {
this
.
cancelSegmentXhr
();
this
.
cancelKeyXhr
();
if
(
this
.
sourceBuffer
)
{
if
(
this
.
sourceBuffer
&&
this
.
mediaSource
.
readyState
===
'open'
)
{
this
.
sourceBuffer
.
abort
();
}
};
...
...
Please
register
or
sign in
to post a comment