Last active
September 26, 2019 19:17
-
-
Save thornbill/069f5a979ffbd77a9068bd63cfb4f0a1 to your computer and use it in GitHub Desktop.
jellyfin-web development patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/components/apphost.js b/src/components/apphost.js | |
index e67d79522..56763ee4a 100644 | |
--- a/src/components/apphost.js | |
+++ b/src/components/apphost.js | |
@@ -277,7 +277,7 @@ define(["appSettings", "browser", "events", "htmlMediaHelper"], function (appSet | |
features.push("displaymode"); | |
features.push("targetblank"); | |
// allows users to connect to more than one server | |
- //features.push("multiserver"); | |
+ features.push("multiserver"); | |
if (!browser.orsay && !browser.tizen && !browser.msie && (browser.firefox || browser.ps4 || browser.edge || cueSupported())) { | |
features.push("subtitleappearancesettings"); | |
diff --git a/src/index.html b/src/index.html | |
index bc9c7b64c..784585150 100644 | |
--- a/src/index.html | |
+++ b/src/index.html | |
@@ -102,5 +102,7 @@ | |
<div class="skinHeader"></div> | |
<div class="mainAnimatedPages skinBody"></div> | |
<div class="mainDrawerHandle"></div> | |
+ <script>window.dashboardVersion="11.0.0";</script> | |
+ <script src="scripts/apploader.js" defer></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment