diff options
| author | Çağrı Sakaoğlu <cagrisakaoglu@gmail.com> | 2023-11-26 00:25:52 +0000 |
|---|---|---|
| committer | Çağrı Sakaoğlu <cagrisakaoglu@gmail.com> | 2023-11-26 13:20:31 +0000 |
| commit | 435c1431401b3b765ea46e45f29bda6eb879a998 (patch) | |
| tree | 6f541a417f091f84c5dc698fed396d52669ddb32 /Emby.Server.Implementations/Updates | |
| parent | 0be2817ccb5136746dc8e576d8ff05fb48ee5e29 (diff) | |
Fix:Plugin Installed Alerts missing from Admin Dashboard #10620
Diffstat (limited to 'Emby.Server.Implementations/Updates')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index b31b4116d..15c4cfdf0 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -321,9 +321,15 @@ namespace Emby.Server.Implementations.Updates } _completedInstallationsInternal.Add(package); - await _eventManager.PublishAsync(isUpdate - ? (GenericEventArgs<InstallationInfo>)new PluginUpdatedEventArgs(package) - : new PluginInstalledEventArgs(package)).ConfigureAwait(false); + + if (isUpdate) + { + await _eventManager.PublishAsync(new PluginUpdatedEventArgs(package)).ConfigureAwait(false); + } + else + { + await _eventManager.PublishAsync(new PluginInstalledEventArgs(package)).ConfigureAwait(false); + } _applicationHost.NotifyPendingRestart(); } |
