Backport pull request #11959 from jellyfin/release-10.9.z

Do not stop validation if folder was removed

Original-merge: cf59140276

Merged-by: Bond-009 <bond.009@outlook.com>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Shadowghost 2024-06-06 14:30:32 -04:00 committed by Joshua M. Boniface
parent 18dd6b2875
commit bb0c234984

View File

@ -364,7 +364,7 @@ namespace MediaBrowser.Controller.Entities
if (IsFileProtocol) if (IsFileProtocol)
{ {
IEnumerable<BaseItem> nonCachedChildren; IEnumerable<BaseItem> nonCachedChildren = [];
try try
{ {
@ -373,7 +373,6 @@ namespace MediaBrowser.Controller.Entities
catch (Exception ex) catch (Exception ex)
{ {
Logger.LogError(ex, "Error retrieving children folder"); Logger.LogError(ex, "Error retrieving children folder");
return;
} }
progress.Report(ProgressHelpers.RetrievedChildren); progress.Report(ProgressHelpers.RetrievedChildren);