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

fix: netcast conditional

This commit is contained in:
Kay Simons 2021-07-03 17:36:17 +02:00
parent e888ae1bf3
commit 6e52a53e3d

View file

@ -14,7 +14,7 @@ function isTv() {
return true;
}
if (userAgent.indexOf('netcast')) {
if (userAgent.indexOf('netcast') !== -1) {
return true;
}