diff options
| author | Bond_009 <bond.009@outlook.com> | 2025-02-09 18:30:53 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2025-02-09 18:30:53 +0100 |
| commit | ce76817020ad90fb00b5e98834fcf86c848f3cfb (patch) | |
| tree | f618eb622a620b815840a6f65570b3e4868be1e7 /MediaBrowser.Controller/Library | |
| parent | c9c90050d9cf7824e8b6341a8e1318ca62f0d0b4 (diff) | |
Rename CreateOrUpdateItems back to CreateItems
Reverts the name change of this function made in the EFCore PR. This hopefully
reduces the amount of merge conflicts while backporting and makes it consistent
with the CreateItem function.
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 8fcd5f605..47b1cb16e 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -258,7 +258,7 @@ namespace MediaBrowser.Controller.Library /// <param name="items">Items to create.</param> /// <param name="parent">Parent of new items.</param> /// <param name="cancellationToken">CancellationToken to use for operation.</param> - void CreateOrUpdateItems(IReadOnlyList<BaseItem> items, BaseItem? parent, CancellationToken cancellationToken); + void CreateItems(IReadOnlyList<BaseItem> items, BaseItem? parent, CancellationToken cancellationToken); /// <summary> /// Updates the item. |
