diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-01-03 14:00:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-03 14:00:16 -0500 |
| commit | 89a3db9346be631cff524c6e3925c9ac25b5460d (patch) | |
| tree | 0043d7980ca2ac4a77f3fa563e5abb8fba3a2bc8 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | 86275bcc55cfe6cf6798d152a53f79c6f7811b52 (diff) | |
| parent | 3d6dac26f4172ab1dae016e01ea7ca94dad665a6 (diff) | |
Merge pull request #286 from Bond-009/cleanup
Clean up HttpClientManager, LiveTvManager and InstallationManager
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index b4d18b69c..27741863b 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -549,13 +549,13 @@ namespace Emby.Server.Implementations.Updates // Do plugin-specific processing if (isPlugin) { - if (plugin != null) + if (plugin == null) { - OnPluginUpdated(plugin, package); + OnPluginInstalled(package); } else { - OnPluginInstalled(package); + OnPluginUpdated(plugin, package); } } } |
