mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
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:
@@ -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');
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user