Skip to content

Commit 4340864

Browse files
authored
fix: Fix Tizen 3 default cross-boundary strategy (#8850)
The default was not ported correctly in #8210. This fixes it to its previous (and documented) default value.
1 parent 8556c5e commit 4340864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/device/tizen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ shaka.device.Tizen = class extends shaka.device.AbstractDevice {
151151

152152
if (this.getVersion() === 3) {
153153
config.streaming.crossBoundaryStrategy =
154-
shaka.config.CrossBoundaryStrategy.RESET;
154+
shaka.config.CrossBoundaryStrategy.RESET_TO_ENCRYPTED;
155155
}
156156
config.streaming.shouldFixTimestampOffset = true;
157157
// Tizen has long hardware pipeline that respond slowly to seeking.

0 commit comments

Comments
 (0)