youbora-adapter-hlsjs
Advanced tools
Comparing version 6.5.3 to 6.5.4
@@ -0,1 +1,5 @@ | ||
## [6.5.4] - 2019-10-16 | ||
### Fixed | ||
- Autoplay non blocked detection for VoD | ||
## [6.5.3] - 2019-10-15 | ||
@@ -2,0 +6,0 @@ ### Library |
@@ -6,4 +6,4 @@ { | ||
"author": "Jesus Lopez", | ||
"version": "6.5.3", | ||
"built": "2019-10-15", | ||
"version": "6.5.4", | ||
"built": "2019-10-16", | ||
"repo": "https://bitbucket.org/npaw/hlsjs-adapter-js", | ||
@@ -10,0 +10,0 @@ "libVersion": "^6.5.17", |
{ | ||
"name": "youbora-adapter-hlsjs", | ||
"version": "6.5.3", | ||
"version": "6.5.4", | ||
"main": "src/adapter.js", | ||
@@ -5,0 +5,0 @@ "description": "Youbora adapter for hlsjs", |
@@ -147,5 +147,8 @@ var youbora = require('youboralib') | ||
progressListener: function (e) { | ||
if (!this.flags.isStarted && this.getPlayhead() > 0.2 && this.startedOnce) { | ||
this.fireStart() | ||
this.fireJoin() | ||
if (!this.flags.isStarted) { | ||
if (this.getPlayhead() > 0.2 && | ||
(this.startedOnce || !this.plugin.getIsLive())) { | ||
this.fireStart() | ||
this.fireJoin() | ||
} | ||
} | ||
@@ -152,0 +155,0 @@ }, |
11402
241