fix: Another Sony Bravia TV Playready Failure (#8791)

Fixes https://github.com/shaka-project/shaka-player/issues/8790
There is another Sony TV model (called Bluefin) that also requires
little endianness conversion. Future proofed Sony tv detection to
include all the G models.
This commit is contained in:
Agajan J.
2025-06-24 00:36:20 -07:00
committed by GitHub
parent 4713909dd2
commit 62e55d4b1e
+1 -1
View File
@@ -69,7 +69,7 @@ shaka.device.DefaultBrowser = class extends shaka.device.AbstractDevice {
/** @private {!shaka.util.Lazy<boolean>} */
this.isSonyTV_ = new shaka.util.Lazy(() => {
return navigator.userAgent.includes('sony.hbbtv.tv.G5');
return navigator.userAgent.includes('sony.hbbtv.tv');
});
}