fixes #15 - SortRemoveWords config change not working

This commit is contained in:
LukePulverenti
2013-03-11 21:46:46 -04:00
parent f4ec4876d3
commit 76dbab939c
9 changed files with 89 additions and 151 deletions

View File

@@ -28,7 +28,7 @@ namespace MediaBrowser.Controller.Entities
GroupContents = groupContents;
if (shadow == null)
{
Name = SortName = "<Unknown>";
Name = ForcedSortName = "<Unknown>";
}
else
{
@@ -167,7 +167,7 @@ namespace MediaBrowser.Controller.Entities
if (ShadowItem != null)
{
Name = ShadowItem.Name;
SortName = ShadowItem.SortName;
ForcedSortName = ShadowItem.SortName;
Genres = ShadowItem.Genres;
Studios = ShadowItem.Studios;
OfficialRating = ShadowItem.OfficialRating;