mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed MBTheater typo
This commit is contained in:
parent
d2dab35770
commit
c83eb94a90
3 changed files with 7 additions and 4 deletions
|
@ -572,9 +572,12 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) {
|
|||
/**
|
||||
* Gets a list of plugins that are available to be installed
|
||||
*/
|
||||
self.getAvailablePlugins = function () {
|
||||
self.getAvailablePlugins = function (options) {
|
||||
|
||||
var url = self.getUrl("Packages", { PackageType: "UserInstalled" });
|
||||
options = $.extend({}, options || {});
|
||||
options.PackageType = "UserInstalled";
|
||||
|
||||
var url = self.getUrl("Packages", options);
|
||||
|
||||
return self.ajax({
|
||||
type: "GET",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue