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/Entities/Folder.cs | |
| 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/Entities/Folder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index c5d04f639..957e8b319 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -452,7 +452,7 @@ namespace MediaBrowser.Controller.Entities if (newItems.Count > 0) { - LibraryManager.CreateOrUpdateItems(newItems, this, cancellationToken); + LibraryManager.CreateItems(newItems, this, cancellationToken); } } else |
