Backport pull request #7495 from jellyfin-web/release-10.11.z

Add Vega OS detection

Original-merge: 9b80917cd1dc14c792ada2289ee63d0911734a92

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
thornbill
2026-01-15 13:40:29 -05:00
parent 48a9d6494f
commit 5ec2eff99a
6 changed files with 29 additions and 7 deletions
+2
View File
@@ -33,6 +33,8 @@ function getWebDeviceIcon(browser: string | null | undefined) {
return BASE_DEVICE_IMAGE_URL + 'msie.svg';
case 'Titan OS':
return BASE_DEVICE_IMAGE_URL + 'titanos.svg';
case 'Vega OS':
return BASE_DEVICE_IMAGE_URL + 'firetv.svg';
default:
return BASE_DEVICE_IMAGE_URL + 'html5.svg';
}