CollectionType can be null
This commit is contained in:
parent
1c74e2f40e
commit
81f527f808
|
@ -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>
|
||||
|
|
|
@ -35,7 +35,7 @@ namespace MediaBrowser.Model.Entities
|
|||
/// Gets or sets the type of the collection.
|
||||
/// </summary>
|
||||
/// <value>The type of the collection.</value>
|
||||
public CollectionTypeOptions CollectionType { get; set; }
|
||||
public CollectionTypeOptions? CollectionType { get; set; }
|
||||
|
||||
public LibraryOptions LibraryOptions { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user