diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-07-23 18:06:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-23 18:06:34 -0400 |
| commit | 0d446c8755ab5688eb9c582b478c6b3f42cd7942 (patch) | |
| tree | 3120ceafc5f4036de218a98488238559db8a2129 /MediaBrowser.Controller/Library | |
| parent | fd82ecd18ebf8c4b7efcf2f628d636f780459686 (diff) | |
| parent | 7324b44c4371b2c9543bc834e665daf6e764b554 (diff) | |
Merge pull request #3609 from Bond-009/warn21
Fix warnings
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 9d6646857..bb56c83c2 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -199,7 +199,7 @@ namespace MediaBrowser.Controller.Library /// <summary> /// Updates the item. /// </summary> - void UpdateItems(IEnumerable<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken); + void UpdateItems(IReadOnlyList<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken); void UpdateItem(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken); |
