diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-01-28 12:21:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-28 12:21:40 +0100 |
| commit | 488ce510321ebcec36bccc45398feffe725cb5f0 (patch) | |
| tree | 9a7a52acf8169a7406cd41b166066198cfd19124 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 42724ef4118ca8225da537db0c087d6ae86dbae1 (diff) | |
Remove some allocations (#7246)
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 3e125602a..5ab7808c3 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -419,7 +419,7 @@ namespace MediaBrowser.Controller.Entities return updateType; } - protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken) + protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, IReadOnlyList<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken) { var hasChanges = await base.RefreshedOwnedItems(options, fileSystemChildren, cancellationToken).ConfigureAwait(false); |
