aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Updates
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2018-12-26 01:16:02 +0100
committerBond_009 <bond.009@outlook.com>2019-01-03 18:24:26 +0100
commita1b96a3135bdae274db58ef35ab35708f2257896 (patch)
tree5ae2a270e46d331964c83ffbcf89d9d960e5c948 /Emby.Server.Implementations/Updates
parent0cafd7dfefe07bf8e1d997c384561707e1b22c6a (diff)
Clean up HttpClientManager, LiveTvManager and InstallationManager
Diffstat (limited to 'Emby.Server.Implementations/Updates')
-rw-r--r--Emby.Server.Implementations/Updates/InstallationManager.cs6
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);
}
}
}