mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
support adding additional users to sessions
This commit is contained in:
parent
e8e1978bb4
commit
2957a40d8d
5 changed files with 27 additions and 10 deletions
|
@ -2,7 +2,7 @@
|
|||
window.MediaBrowser = {};
|
||||
}
|
||||
|
||||
MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, window) {
|
||||
MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, window, FileReader) {
|
||||
|
||||
/**
|
||||
* Creates a new api client instance
|
||||
|
@ -3982,7 +3982,7 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, wi
|
|||
|
||||
};
|
||||
|
||||
}(jQuery, navigator, window.JSON, window.WebSocket, setTimeout, window);
|
||||
}(jQuery, navigator, window.JSON, window.WebSocket, setTimeout, window, window.FileReader);
|
||||
|
||||
/**
|
||||
* Provides a friendly way to create an api client instance using information from the browser's current url
|
||||
|
@ -4208,7 +4208,7 @@ MediaBrowser.SHA1 = function (msg) {
|
|||
}
|
||||
|
||||
if (matched.platform) {
|
||||
browser[matched.platform] = true
|
||||
browser[matched.platform] = true;
|
||||
}
|
||||
|
||||
// Chrome is Webkit, but Webkit is also Safari.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue