diff options
| author | Techywarrior <techywarrior@gmail.com> | 2013-04-09 08:42:22 -0700 |
|---|---|---|
| committer | Techywarrior <techywarrior@gmail.com> | 2013-04-09 08:42:22 -0700 |
| commit | 4cdfff0b7eb96ee1c3c870b936adafa9db31c448 (patch) | |
| tree | e610e7223694b93406528d2ddb72cb4f03e39f4a /MediaBrowser.Server.Implementations/Updates/InstallationManager.cs | |
| parent | 4e76319f16fb2973ad0bf066bc2c0315513234af (diff) | |
| parent | 43d9cea6c4da874cd85335c2c325d7863933a362 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Updates/InstallationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs index 271d3d877..347e378fe 100644 --- a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs +++ b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs @@ -288,7 +288,7 @@ namespace MediaBrowser.Server.Implementations.Updates return latestPluginInfo != null && latestPluginInfo.version > p.Version ? latestPluginInfo : null; - }).Where(p => !CompletedInstallations.Any(i => i.Name.Equals(p.name, StringComparison.OrdinalIgnoreCase))) + }).Where(p => !CompletedInstallations.Any(i => string.Equals(i.Name, p.name, StringComparison.OrdinalIgnoreCase))) .Where(p => p != null && !string.IsNullOrWhiteSpace(p.sourceUrl)); } |
