mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #11959 from Shadowghost/continue-validation-if-removed
Do not stop validation if folder was removed
This commit is contained in:
commit
cf59140276
@ -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…
x
Reference in New Issue
Block a user