From 32f6982f08c8cb7a2aeb028769ce82c287cc8fd7 Mon Sep 17 00:00:00 2001 From: Dan Sparacio Date: Mon, 2 May 2016 10:02:08 -0700 Subject: [PATCH] With commit ddd264285fe4f362db55c51e5a07a09ffeed3fc8 I removed the line causing the bug reported in #1369. This was done as a hack before I fixed the actual problem with MP for FireFox and issue #1217 This commit will fix #1369 --- src/streaming/Stream.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/streaming/Stream.js b/src/streaming/Stream.js index 73189d90f1..e1e07fc6b1 100644 --- a/src/streaming/Stream.js +++ b/src/streaming/Stream.js @@ -328,6 +328,7 @@ function Stream(config) { if (optionalSettings) { streamProcessor.setBuffer(optionalSettings.buffer); + streamProcessor.getIndexHandler().setCurrentTime(optionalSettings.currentTime); streamProcessors[optionalSettings.replaceIdx] = streamProcessor; } else { streamProcessors.push(streamProcessor);