File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " dashjs" ,
3- "version" : " 3.1.3 " ,
3+ "version" : " 3.1.4 " ,
44 "description" : " A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers." ,
55 "main" : " build/es5/index.js" ,
66 "types" : " build/typings/index.d.ts" ,
Original file line number Diff line number Diff line change 1- const VERSION = '3.1.3 ' ;
1+ const VERSION = '3.1.4 ' ;
22export function getVersionString ( ) {
33 return VERSION ;
44}
Original file line number Diff line number Diff line change @@ -282,7 +282,8 @@ function StreamController() {
282282 const mediaInfo = adapter . getMediaInfoForType ( stream . getStreamInfo ( ) , mediaType ) ;
283283 const voRepresentations = adapter . getVoRepresentations ( mediaInfo ) ;
284284 voRepresentations . forEach ( ( voRep ) => {
285- const range = timelineConverter . calcSegmentAvailabilityRange ( voRep , true ) ;
285+ const isDynamic = adapter . getIsDynamic ( ) ;
286+ const range = timelineConverter . calcSegmentAvailabilityRange ( voRep , isDynamic ) ;
286287
287288 if ( range . end < range . start ) {
288289 segmentAvailabilityRangeIsOk = false ;
You can’t perform that action at this time.
0 commit comments