mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-28 04:04:43 +00:00
Fix NullReferenceException at startup
This commit is contained in:
parent
105fc3dc29
commit
28f07df657
7 changed files with 23 additions and 7 deletions
|
|
@ -28,11 +28,13 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
|
|||
public DeleteTranscodeFileTask(
|
||||
ILogger<DeleteTranscodeFileTask> logger,
|
||||
IFileSystem fileSystem,
|
||||
IConfigurationManager configurationManager)
|
||||
IConfigurationManager configurationManager,
|
||||
ILocalizationManager localization)
|
||||
{
|
||||
_logger = logger;
|
||||
_fileSystem = fileSystem;
|
||||
_configurationManager = configurationManager;
|
||||
_localization = localization;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue