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

remove native app check for web clients

This commit is contained in:
dkanada 2019-01-21 20:54:43 +09:00
parent 68926062b0
commit 60b70ad0c9

View file

@ -129,7 +129,6 @@ define(["appSettings", "browser", "events", "htmlMediaHelper"], function(appSett
browser.edgeUwp && features.push("sync");
supportsFullscreen() && features.push("fullscreenchange");
(browser.chrome || browser.edge && !browser.slow) && (browser.noAnimation || browser.edgeUwp || browser.xboxOne || features.push("imageanalysis"));
AppInfo.isNativeApp && features.push("multiserver");
(browser.tv || browser.xboxOne || browser.ps4 || browser.mobile) && features.push("physicalvolumecontrol");
browser.tv || browser.xboxOne || browser.ps4 || features.push("remotecontrol");
browser.operaTv || browser.tizen || browser.orsay || browser.web0s || browser.edgeUwp || features.push("remotevideo");
@ -138,7 +137,6 @@ define(["appSettings", "browser", "events", "htmlMediaHelper"], function(appSett
browser.orsay || browser.tizen || browser.msie || !(browser.firefox || browser.ps4 || browser.edge || cueSupported()) || features.push("subtitleappearancesettings");
browser.orsay || browser.tizen || features.push("subtitleburnsettings");
browser.tv || browser.ps4 || browser.xboxOne || features.push("fileinput");
AppInfo.isNativeApp && features.push("displaylanguage");
browser.chrome && features.push("chromecast");
}();
if (supportedFeatures.indexOf("htmlvideoautoplay") === -1 && supportsHtmlMediaAutoplay() !=== false) {