diff options
| author | Negulici-R. Barnabas <109497789+negulici-r-barnabas@users.noreply.github.com> | 2022-08-02 17:16:01 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-02 17:16:01 +0300 |
| commit | c1d990c9a33b18b350b0d4ff826d17005dbd4463 (patch) | |
| tree | d1c60c731a2606f69f622acd2beef543f35c1e51 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 633dcd85a970725eb4ded1ed8ad53fbd42e7c2b2 (diff) | |
| parent | b3675ebce0be164e673c6fca84a5012245cf98fb (diff) | |
Merge branch 'jellyfin:master' into master
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 313d27ce6..5905c25a5 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -570,5 +570,13 @@ namespace MediaBrowser.Controller.Library Task RunMetadataSavers(BaseItem item, ItemUpdateType updateReason); BaseItem GetParentItem(Guid? parentId, Guid? userId); + + /// <summary> + /// Queue a library scan. + /// </summary> + /// <remarks> + /// This exists so plugins can trigger a library scan. + /// </remarks> + void QueueLibraryScan(); } } |
