use static package method when checking for plugin updates from dashboard page

This commit is contained in:
Luke Pulverenti
2013-06-28 09:26:27 -04:00
parent 28be50b0f1
commit 1e49857765
7 changed files with 10 additions and 10 deletions

View File

@@ -60,7 +60,7 @@ namespace MediaBrowser.Server.Implementations.ScheduledTasks
{
progress.Report(0);
var packagesToInstall = (await _installationManager.GetAvailablePluginUpdatesStatic(true, cancellationToken).ConfigureAwait(false)).ToList();
var packagesToInstall = (await _installationManager.GetAvailablePluginUpdatesWithoutRegistrationInfo(true, cancellationToken).ConfigureAwait(false)).ToList();
progress.Report(10);