mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
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:
parent
18dd6b2875
commit
bb0c234984
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user