diff options
| author | Tim Eisele <Shadowghost@users.noreply.github.com> | 2023-09-17 16:35:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-17 16:35:41 +0200 |
| commit | bce45992d9fa5fd121cbc35af00d2512dbe912fa (patch) | |
| tree | d91bc6b781d52bcb6f4ac9c15b20940d39da4271 /Emby.Server.Implementations/ScheduledTasks/Tasks | |
| parent | 61a49e94c4753eb8dbc421530656962f4a7a33c8 (diff) | |
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs
Co-authored-by: Bond-009 <bond.009@outlook.com>
Diffstat (limited to 'Emby.Server.Implementations/ScheduledTasks/Tasks')
| -rw-r--r-- | Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs index 91f3c435c..ef2d1942a 100644 --- a/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs +++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs @@ -112,7 +112,7 @@ public class CleanupCollectionAndPlaylistPathsTask : IScheduledTask private void CleanupLinkedChildren<T>(T folder, CancellationToken cancellationToken) where T : Folder { - List<LinkedChild> itemsToRemove = null; + List<LinkedChild>? itemsToRemove = null; foreach (var linkedChild in folder.LinkedChildren) { if (!File.Exists(folder.Path)) |
