diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-09-03 18:46:34 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-09-03 19:32:11 +0200 |
| commit | 637e86478f5cca7c8ac5e17cf541dc4c6adac14e (patch) | |
| tree | 8026af13b61ce2e8a47bcfcacdd09adf397610a0 /Emby.Server.Implementations/Collections/CollectionManager.cs | |
| parent | fb5385f1df55c7a2ee35981ac138cee6c62c903d (diff) | |
Fix some warnings
Diffstat (limited to 'Emby.Server.Implementations/Collections/CollectionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Collections/CollectionManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Collections/CollectionManager.cs b/Emby.Server.Implementations/Collections/CollectionManager.cs index b00a51922..79ef70fff 100644 --- a/Emby.Server.Implementations/Collections/CollectionManager.cs +++ b/Emby.Server.Implementations/Collections/CollectionManager.cs @@ -196,8 +196,8 @@ namespace Emby.Server.Implementations.Collections } /// <inheritdoc /> - public Task AddToCollectionAsync(Guid collectionId, IEnumerable<Guid> ids) - => AddToCollectionAsync(collectionId, ids, true, new MetadataRefreshOptions(new DirectoryService(_fileSystem))); + public Task AddToCollectionAsync(Guid collectionId, IEnumerable<Guid> itemIds) + => AddToCollectionAsync(collectionId, itemIds, true, new MetadataRefreshOptions(new DirectoryService(_fileSystem))); private async Task AddToCollectionAsync(Guid collectionId, IEnumerable<Guid> ids, bool fireEvent, MetadataRefreshOptions refreshOptions) { |
