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;
}