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

fix media player flyouts

This commit is contained in:
Luke Pulverenti 2015-05-22 16:15:29 -04:00
parent 8443751aec
commit 272d9c42a9
3 changed files with 88 additions and 123 deletions

View file

@ -4,6 +4,7 @@
var platform = (device.platform || '').toLowerCase();
// Don't require validation on android
if (platform.indexOf('android') != -1) {
deferred.resolve();
return;
@ -14,6 +15,14 @@
function validateLiveTV(deferred) {
var platform = (device.platform || '').toLowerCase();
// Don't require validation if not android
if (platform.indexOf('android') == -1) {
deferred.resolve();
return;
}
deferred.resolve();
}