diff options
| author | Bond_009 <bond.009@outlook.com> | 2024-01-16 20:24:28 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2024-01-16 20:24:28 +0100 |
| commit | 244a739675a140be4c6ad88ee8028cdadec4ac58 (patch) | |
| tree | 66ee1e4d28094f4f15b53bb040d3d643ddb32f04 /Emby.Server.Implementations/ScheduledTasks | |
| parent | bf57faff6506df82ba2302ae08e5f1da5698798e (diff) | |
Fix incorrect path check in CleanupCollectionAndPlaylistPathsTask
Diffstat (limited to 'Emby.Server.Implementations/ScheduledTasks')
| -rw-r--r-- | Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs index acd4bf905..812df8192 100644 --- a/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs +++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs @@ -115,9 +115,10 @@ public class CleanupCollectionAndPlaylistPathsTask : IScheduledTask List<LinkedChild>? itemsToRemove = null; foreach (var linkedChild in folder.LinkedChildren) { - if (!File.Exists(folder.Path)) + var path = linkedChild.Path; + if (!File.Exists(path)) { - _logger.LogInformation("Item in {FolderName} cannot be found at {ItemPath}", folder.Name, linkedChild.Path); + _logger.LogInformation("Item in {FolderName} cannot be found at {ItemPath}", folder.Name, path); (itemsToRemove ??= new List<LinkedChild>()).Add(linkedChild); } } |
