diff options
| author | Rainking720 <dr.awesome@gmail.com> | 2016-02-04 15:04:25 -0500 |
|---|---|---|
| committer | Rainking720 <dr.awesome@gmail.com> | 2016-02-04 15:04:25 -0500 |
| commit | 8b86985f1ad73ca6e2c3a309b85310b8dd5810e1 (patch) | |
| tree | 7ff3f1253d9368021f05e3d866a227c2c7c95d8b | |
| parent | d28ef71d93ea7fe50343f82f575637307b4d74bf (diff) | |
Update IsFolderComparer.cs
Fixed typo .. name was returning "Album" instead of "IsFolder", so IsFolder comparisons never got applied.
| -rw-r--r-- | MediaBrowser.Server.Implementations/Sorting/IsFolderComparer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Sorting/IsFolderComparer.cs b/MediaBrowser.Server.Implementations/Sorting/IsFolderComparer.cs index 9edbd90dc..d2341d065 100644 --- a/MediaBrowser.Server.Implementations/Sorting/IsFolderComparer.cs +++ b/MediaBrowser.Server.Implementations/Sorting/IsFolderComparer.cs @@ -33,7 +33,7 @@ namespace MediaBrowser.Server.Implementations.Sorting /// <value>The name.</value> public string Name { - get { return ItemSortBy.Album; } + get { return ItemSortBy.IsFolder; } } } } |
