Skip to content

Commit

Permalink
Update Playlist.js
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshevach authored Jun 30, 2016
1 parent 2c5153d commit 7092f69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/playlistGenerator/Playlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ Playlist.prototype.validate = function validate(opts) {
}

if( that.playListLimits && that.playListLimits.manifestTimeWindowInMsec &&
that.playListLimits.manifestTimeWindowInMsec < that.totalDuration ){
that.playListLimits.manifestTimeWindowInMsec < 1.5 * that.totalDuration ){
that.logger.warn("that.playListLimits.manifestTimeWindowInMsec < that.totalDuration. (%d < %d)",
that.playListLimits.manifestTimeWindowInMsec , that.totalDuration );
return false;
Expand Down Expand Up @@ -582,4 +582,4 @@ Playlist.prototype.handleEvent = function (type,arg) {

};

module.exports = Playlist;
module.exports = Playlist;

0 comments on commit 7092f69

Please sign in to comment.