update sorting

This commit is contained in:
Luke Pulverenti
2016-04-02 12:47:23 -04:00
parent 6b4c191503
commit cbcadbf892
3 changed files with 4 additions and 3 deletions

View File

@@ -503,7 +503,8 @@ namespace MediaBrowser.Controller.Entities
{
if (!string.IsNullOrWhiteSpace(ForcedSortName))
{
_sortName = ModifySortChunks(ForcedSortName);
// Need the ToLower because that's what CreateSortName does
_sortName = ModifySortChunks(ForcedSortName).ToLower();
}
else
{