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

Fix inverted boolean returns

This commit is contained in:
Bill Thornton 2022-10-06 10:58:12 -04:00
parent b426b6e2bf
commit 8f694d7d1c
2 changed files with 12 additions and 12 deletions

View file

@ -166,7 +166,7 @@ function supportsHtmlMediaAutoplay() {
return true;
}
return !!browser.mobile;
return !browser.mobile;
}
function supportsCue() {