diff options
| author | Vasily <just.one.man@yandex.ru> | 2020-05-19 14:50:14 +0300 |
|---|---|---|
| committer | Vasily <just.one.man@yandex.ru> | 2020-05-19 14:50:14 +0300 |
| commit | a226a4ee03d974615a6fa26b936a93458a255b70 (patch) | |
| tree | 112f24683c4966c12c054288363d7731d90bfd05 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | f18293bf762c86581153ab8d9b1b6267421178a9 (diff) | |
Compute hash only when one is not computed in DB, small optimizations here and there
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -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 559a5415f..81160efec 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -195,8 +195,8 @@ namespace MediaBrowser.Controller.Library /// Updates the item. /// </summary> void UpdateItems(IEnumerable<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken); + void UpdateItem(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken); - void UpdateAll(); /// <summary> /// Retrieves the item. |
