Merge pull request #10876 from Bond-009/cleanup

Fix incorrect path check in CleanupCollectionAndPlaylistPathsTask
pull/10825/head^2
Bond-009 5 months ago committed by GitHub
commit 0f26d870de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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);
}
}

Loading…
Cancel
Save