mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #10625 from ilovepilav/fix-alerts-missing-from-admin-dashboard
Fix: Plugin Installed Alerts missing from Admin Dashboard #10620 (cherry picked from commit 2f6536e34b2844c96033c3d7ee853f70d4a6351f) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
a173d01139
commit
c4cdcb73fc
@ -161,6 +161,7 @@
|
|||||||
- [MinecraftPlaye](https://github.com/MinecraftPlaye)
|
- [MinecraftPlaye](https://github.com/MinecraftPlaye)
|
||||||
- [RealGreenDragon](https://github.com/RealGreenDragon)
|
- [RealGreenDragon](https://github.com/RealGreenDragon)
|
||||||
- [TheTyrius](https://github.com/TheTyrius)
|
- [TheTyrius](https://github.com/TheTyrius)
|
||||||
|
- [Çağrı Sakaoğlu](https://github.com/ilovepilav)
|
||||||
|
|
||||||
# Emby Contributors
|
# Emby Contributors
|
||||||
|
|
||||||
@ -229,3 +230,6 @@
|
|||||||
- [gnuyent](https://github.com/gnuyent)
|
- [gnuyent](https://github.com/gnuyent)
|
||||||
- [Matthew Jones](https://github.com/matthew-jones-uk)
|
- [Matthew Jones](https://github.com/matthew-jones-uk)
|
||||||
- [Jakob Kukla](https://github.com/jakobkukla)
|
- [Jakob Kukla](https://github.com/jakobkukla)
|
||||||
|
- [Utku Özdemir](https://github.com/utkuozdemir)
|
||||||
|
- [JPUC1143](https://github.com/Jpuc1143/)
|
||||||
|
- [0x25CBFC4F](https://github.com/0x25CBFC4F)
|
||||||
|
@ -324,9 +324,15 @@ namespace Emby.Server.Implementations.Updates
|
|||||||
}
|
}
|
||||||
|
|
||||||
_completedInstallationsInternal.Add(package);
|
_completedInstallationsInternal.Add(package);
|
||||||
await _eventManager.PublishAsync(isUpdate
|
|
||||||
? (GenericEventArgs<InstallationInfo>)new PluginUpdatedEventArgs(package)
|
if (isUpdate)
|
||||||
: new PluginInstalledEventArgs(package)).ConfigureAwait(false);
|
{
|
||||||
|
await _eventManager.PublishAsync(new PluginUpdatedEventArgs(package)).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await _eventManager.PublishAsync(new PluginInstalledEventArgs(package)).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
_applicationHost.NotifyPendingRestart();
|
_applicationHost.NotifyPendingRestart();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user