We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c3737 commit 45d5e51Copy full SHA for 45d5e51
src/streaming/controllers/StreamController.js
@@ -385,7 +385,7 @@ function StreamController() {
385
386
for (let i = 0; i < ln; i++) {
387
stream = streams[i];
388
- streamDuration = parseFloat(streamDuration + stream.getDuration());
+ streamDuration = parseFloat((streamDuration + stream.getDuration()).toFixed(5));
389
390
if (time < streamDuration) {
391
return stream;
0 commit comments