diff --git a/Jellyfin.Server.Implementations/Events/Consumers/Updates/PackageInstallationFailedLogger.cs b/Jellyfin.Server.Implementations/Events/Consumers/Updates/PluginInstallationFailedLogger.cs
similarity index 84%
rename from Jellyfin.Server.Implementations/Events/Consumers/Updates/PackageInstallationFailedLogger.cs
rename to Jellyfin.Server.Implementations/Events/Consumers/Updates/PluginInstallationFailedLogger.cs
index 5d7296b3b7..d71c298c54 100644
--- a/Jellyfin.Server.Implementations/Events/Consumers/Updates/PackageInstallationFailedLogger.cs
+++ b/Jellyfin.Server.Implementations/Events/Consumers/Updates/PluginInstallationFailedLogger.cs
@@ -13,17 +13,17 @@ namespace Jellyfin.Server.Implementations.Events.Consumers.Updates
///
/// Creates an entry in the activity log when a package installation fails.
///
- public class PackageInstallationFailedLogger : IEventConsumer
+ public class PluginInstallationFailedLogger : IEventConsumer
{
private readonly ILocalizationManager _localizationManager;
private readonly IActivityManager _activityManager;
///
- /// Initializes a new instance of the class.
+ /// Initializes a new instance of the class.
///
/// The localization manager.
/// The activity manager.
- public PackageInstallationFailedLogger(ILocalizationManager localizationManager, IActivityManager activityManager)
+ public PluginInstallationFailedLogger(ILocalizationManager localizationManager, IActivityManager activityManager)
{
_localizationManager = localizationManager;
_activityManager = activityManager;
diff --git a/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs b/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs
index 84181f4fee..de9dc08afa 100644
--- a/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs
+++ b/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs
@@ -43,7 +43,7 @@ namespace Jellyfin.Server.Implementations.Events
collection.AddScoped, PluginInstalledLogger>();
collection.AddScoped, PluginUninstalledLogger>();
collection.AddScoped, PluginUpdatedLogger>();
- collection.AddScoped, PackageInstallationFailedLogger>();
+ collection.AddScoped, PluginInstallationFailedLogger>();
collection.AddScoped, UserCreatedLogger>();
collection.AddScoped, UserDeletedLogger>();