1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix: exclude onDemandRender from webOS 2

reports getVideoPlaybackQuality as functional, but isn't
This commit is contained in:
ThaUnknown 2023-03-23 17:48:03 +01:00
parent d352c6958c
commit 5d32eb8058

View file

@ -1281,7 +1281,8 @@ function tryRemoveElement(elem) {
asyncRender: true,
// firefox implements offscreen canvas, but not according to spec which causes errors
offscreenRender: !browser.firefox,
onDemandRender: true,
// RVFC is polyfilled everywhere, but webOS 2 reports polyfill API's as functional even tho they aren't
onDemandRender: browser.web0sVersion !== 2,
useLocalFonts: true,
dropAllAnimations: false,
libassMemoryLimit: 40,