diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-09-24 02:23:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-24 02:23:40 -0400 |
| commit | 20d156b569de3365f99876b526247367d45f85de (patch) | |
| tree | d0b2e6084d6dd147834f55d041a2cc3f8a3baacf /MediaBrowser.Controller/Library | |
| parent | 9cfb4700a46e281262ecd0c5b66dfe2c29ac06c9 (diff) | |
| parent | fdc2826709495c5313c4a61060fd420d0f8214b8 (diff) | |
Merge pull request #2187 from MediaBrowser/dev
add network share config
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 184a245c1..975c59659 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -559,6 +559,7 @@ namespace MediaBrowser.Controller.Library void AddVirtualFolder(string name, string collectionType, LibraryOptions options, bool refreshLibrary); void RemoveVirtualFolder(string name, bool refreshLibrary); void AddMediaPath(string virtualFolderName, MediaPathInfo path); + void UpdateMediaPath(string virtualFolderName, MediaPathInfo path); void RemoveMediaPath(string virtualFolderName, string path); QueryResult<Tuple<BaseItem, ItemCounts>> GetGenres(InternalItemsQuery query); |
