diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-28 09:26:27 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-28 09:26:27 -0400 |
| commit | 1e49857765d0809604de18395867a6f5c2cce275 (patch) | |
| tree | 3675fbaad6c4d9f8ca83bc3aa0871d0245f908f9 /MediaBrowser.Controller | |
| parent | 28be50b0f18fa2800f67d7ff2466c1695b9e77d7 (diff) | |
use static package method when checking for plugin updates from dashboard page
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Updates/IInstallationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Updates/IInstallationManager.cs b/MediaBrowser.Controller/Updates/IInstallationManager.cs index 791150276..c7f064279 100644 --- a/MediaBrowser.Controller/Updates/IInstallationManager.cs +++ b/MediaBrowser.Controller/Updates/IInstallationManager.cs @@ -92,7 +92,7 @@ namespace MediaBrowser.Controller.Updates /// <param name="withAutoUpdateEnabled">if set to <c>true</c> [with auto update enabled].</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task{IEnumerable{PackageVersionInfo}}.</returns> - Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdatesStatic(bool withAutoUpdateEnabled, CancellationToken cancellationToken); + Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdatesWithoutRegistrationInfo(bool withAutoUpdateEnabled, CancellationToken cancellationToken); /// <summary> /// Installs the package. |
