diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-02-24 02:05:12 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-02-24 02:05:12 +0100 |
| commit | 914e891689af38911332d14b18b4a1b4834cd9ae (patch) | |
| tree | 5b4b3971a2840027e2de539d2a2c7527b135bb13 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 92e5a5c6e8a81c3d604a943628fcb56f3778b042 (diff) | |
Fix unchecked input
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 6700761fc..80fcf71f3 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -542,7 +542,7 @@ namespace MediaBrowser.Controller.Library Guid GetMusicGenreId(string name); - Task AddVirtualFolder(string name, string collectionType, LibraryOptions options, bool refreshLibrary); + Task AddVirtualFolder(string name, CollectionTypeOptions? collectionType, LibraryOptions options, bool refreshLibrary); Task RemoveVirtualFolder(string name, bool refreshLibrary); |
