diff options
| author | Bond-009 <bond.009@outlook.com> | 2025-02-10 12:31:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-10 12:31:47 +0100 |
| commit | dc654065f2c94b1c91a0d188772afe77764dd1e8 (patch) | |
| tree | 46f99a6a3cfa5a972ca21b871254466f642d22ee /MediaBrowser.Controller/Library | |
| parent | ccaaaca71255f56aa501b6be6962bd7b5d976592 (diff) | |
| parent | ce76817020ad90fb00b5e98834fcf86c848f3cfb (diff) | |
Merge pull request #13527 from Bond-009/fixbuildagain
Rename CreateOrUpdateItems back to CreateItems
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. |
