Disable unimplemented updates

This commit is contained in:
Andrew Rabert 2019-01-06 22:32:14 -05:00
parent ee548f1580
commit ef819f142b

View file

@ -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
});
});