diff --git a/dashboard-ui/bower_components/emby-apiclient/apiclient.js b/dashboard-ui/bower_components/emby-apiclient/apiclient.js index e86ff09bf..be3b12c33 100644 --- a/dashboard-ui/bower_components/emby-apiclient/apiclient.js +++ b/dashboard-ui/bower_components/emby-apiclient/apiclient.js @@ -808,16 +808,6 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO }, url = this.getUrl("Packages/" + name, options); return this.getJSON(url) - }, ApiClient.prototype.getAvailableApplicationUpdate = function() { - var url = this.getUrl("Packages/Updates", { - PackageType: "System" - }); - return this.getJSON(url) - }, ApiClient.prototype.getAvailablePluginUpdates = function() { - var url = this.getUrl("Packages/Updates", { - PackageType: "UserInstalled" - }); - return this.getJSON(url) }, ApiClient.prototype.getVirtualFolders = function() { var url = "Library/VirtualFolders"; return url = this.getUrl(url), this.getJSON(url) @@ -1616,4 +1606,4 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO }, ApiClient.prototype.handleMessageReceived = function(msg) { onMessageReceivedInternal(this, msg) }, ApiClient -}); \ No newline at end of file +});