Skip to content

Commit

Permalink
fix lint error in log statement (video-dev#2245)
Browse files Browse the repository at this point in the history
  • Loading branch information
mad-gooze authored and John Bartos committed May 10, 2019
1 parent 516027c commit b4087f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/id3-track-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ID3TrackController extends EventHandler {
// Give a slight bump to the endTime if it's equal to startTime to avoid a SyntaxError in IE
endTime += 0.0001;
} else if (startTime > endTime) {
logger.warn("detected an id3 sample with endTime < startTime, adjusting endTime to (startTime + 0.25)");
logger.warn('detected an id3 sample with endTime < startTime, adjusting endTime to (startTime + 0.25)');
endTime = startTime + 0.25;
}

Expand Down

0 comments on commit b4087f1

Please sign in to comment.