diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-11-21 18:54:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-21 18:54:08 -0500 |
| commit | 09c7f98162df40b624b2505295a698c65cefe270 (patch) | |
| tree | b7e0e3a481c802097e2d65188514fe41813de21e /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 77dba0d06b9dd9417b59a704a74af38ba08ff02d (diff) | |
| parent | 969b9e2a18aa76fd0b2915960ea799a12a9605a0 (diff) | |
Merge pull request #4263 from cvium/defer_image_fetching
Defer image pre-fetching until the end of a refresh/scan
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index c7c79df76..601ca3536 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -571,6 +571,8 @@ namespace MediaBrowser.Controller.Library string videoPath, string[] files); + void RunMetadataSavers(IReadOnlyList<BaseItem> items, ItemUpdateType updateReason); + BaseItem GetParentItem(string parentId, Guid? userId); } } |
