diff options
Diffstat (limited to 'MediaBrowser.Controller/Entities/Folder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index cab3058ef..e782717e9 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -635,8 +635,10 @@ namespace MediaBrowser.Controller.Entities /// <returns>Task.</returns> protected async virtual Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool? recursive = null, bool forceRefreshMetadata = false) { + var locationType = LocationType; + // Nothing to do here - if (LocationType != LocationType.FileSystem) + if (locationType == LocationType.Remote || locationType == LocationType.Virtual) { return; } |
