aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Folder.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2020-10-03 13:36:53 +0200
committercvium <clausvium@gmail.com>2020-10-03 13:36:53 +0200
commit763862cbd879aceed9277d79c5e38e851403cfe6 (patch)
tree4555d8a56464daf840ef5b2d51838da395023d3f /MediaBrowser.Controller/Entities/Folder.cs
parent6cafc152b9403f7870003b0e1a7c85ce74910162 (diff)
Defer image pre-fetching until the end of a refresh/scan
Diffstat (limited to 'MediaBrowser.Controller/Entities/Folder.cs')
-rw-r--r--MediaBrowser.Controller/Entities/Folder.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs
index 11542c1ca..b8737b48c 100644
--- a/MediaBrowser.Controller/Entities/Folder.cs
+++ b/MediaBrowser.Controller/Entities/Folder.cs
@@ -352,11 +352,6 @@ namespace MediaBrowser.Controller.Entities
{
await currentChild.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, cancellationToken).ConfigureAwait(false);
}
- else
- {
- // metadata is up-to-date; make sure DB has correct images dimensions and hash
- await LibraryManager.UpdateImagesAsync(currentChild).ConfigureAwait(false);
- }
continue;
}