aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/ScheduledTasks/TaskManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-29 14:46:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-29 14:46:14 -0400
commit67c6d0fd8f6f327dfe46fc90eb24f57af8d31a9c (patch)
treeb0462796026cbcaa673c89f587c7b99e16bdc1eb /Emby.Common.Implementations/ScheduledTasks/TaskManager.cs
parent370e496314e0a60289e9267c34df85d039d38ba2 (diff)
complete .net core support
Diffstat (limited to 'Emby.Common.Implementations/ScheduledTasks/TaskManager.cs')
-rw-r--r--Emby.Common.Implementations/ScheduledTasks/TaskManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Common.Implementations/ScheduledTasks/TaskManager.cs b/Emby.Common.Implementations/ScheduledTasks/TaskManager.cs
index 15c36e53a..218af7ed5 100644
--- a/Emby.Common.Implementations/ScheduledTasks/TaskManager.cs
+++ b/Emby.Common.Implementations/ScheduledTasks/TaskManager.cs
@@ -249,7 +249,7 @@ namespace Emby.Common.Implementations.ScheduledTasks
var myTasks = ScheduledTasks.ToList();
var list = tasks.ToList();
- myTasks.AddRange(list.Select(t => new ScheduledTaskWorker(t, ApplicationPaths, this, JsonSerializer, Logger, _fileSystem)));
+ myTasks.AddRange(list.Select(t => new ScheduledTaskWorker(t, ApplicationPaths, this, JsonSerializer, Logger, _fileSystem, _systemEvents)));
ScheduledTasks = myTasks.ToArray();