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

Merge pull request #1146 from JustAMan/webos2-play

Fix some issues blocking WebOS 1.2 / 2.0
This commit is contained in:
Vasily 2020-04-30 12:13:42 +03:00 committed by GitHub
commit c23e301e32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 24 additions and 19 deletions

View file

@ -11,5 +11,8 @@ function getConfig() {
export function enableMultiServer() {
return getConfig().then(config => {
return config.multiserver;
}).catch(error => {
console.log("cannot get web config:", error);
return false;
});
}