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

update components

This commit is contained in:
Luke Pulverenti 2016-01-19 20:10:59 -05:00
parent 4b6e0fa3cb
commit e890cbfe17
2 changed files with 10 additions and 5 deletions

View file

@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.0.26",
"_release": "1.0.26",
"version": "1.0.27",
"_release": "1.0.27",
"_resolution": {
"type": "version",
"tag": "1.0.26",
"commit": "6fe8727397b13e87e3afaeee600f600269e0ee18"
"tag": "1.0.27",
"commit": "c8758fe411230a36326a0bd72e8d4d5971f506f7"
},
"_source": "git://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
"_target": "~1.0.3",

View file

@ -510,7 +510,12 @@
};
self.isWebSocketSupported = function () {
return WebSocket != null;
try {
return WebSocket != null;
}
catch (err) {
return false;
}
};
self.openWebSocket = function () {