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:
parent
8443751aec
commit
272d9c42a9
3 changed files with 88 additions and 123 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue