Skip to content

Commit 580a87c

Browse files
#25 Last seconds of stream will never get played back
1 parent 0fa67e1 commit 580a87c

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

site/demo/debug/dashas.swf

7 Bytes
Binary file not shown.

site/demo/production/dashas.swf

5 Bytes
Binary file not shown.

src/main/actionscript/com/castlabs/dash/descriptors/index/SegmentTimeline.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class SegmentTimeline extends SegmentTemplate implements SegmentIndex {
2424
return null;
2525
}
2626

27-
if (isLast(timestamp)) {
27+
if (_live && isLast(timestamp)) {
2828
return _context.buildWaitSegment(internalRepresentationId);
2929
}
3030

0 commit comments

Comments
 (0)