diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-02-24 11:57:04 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-02-24 11:57:04 +0100 |
| commit | 81f527f8083289ce8eab77d522f51f06c3a5a70c (patch) | |
| tree | 6fd9f9cf61c8b0e0257f9ad6f9a6822bb50fcf1f /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | 1c74e2f40e6790621ebc06dd37083a29be2459bd (diff) | |
CollectionType can be null
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index 799f8abc3..d9ffe64b3 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -1240,7 +1240,7 @@ namespace Emby.Server.Implementations.Library return info; } - private CollectionTypeOptions GetCollectionType(string path) + private CollectionTypeOptions? GetCollectionType(string path) { var files = _fileSystem.GetFilePaths(path, new[] { ".collection" }, true, false); foreach (var file in files) @@ -1253,7 +1253,7 @@ namespace Emby.Server.Implementations.Library } } - throw new FileNotFoundException("Coudn't find an appropriate collection type file."); + return null; } /// <summary> |
