diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-14 15:04:16 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-14 15:04:16 -0400 |
| commit | 8c52c065fbb8d59c8830e3737f177f456d646b3e (patch) | |
| tree | 02779c1e628a2510f712c5c358a04edaa123d9ab /MediaBrowser.Controller/Entities/Person.cs | |
| parent | 7736bab31400073daa64df3d4b283c26fcb9ee3e (diff) | |
update people sorting
Diffstat (limited to 'MediaBrowser.Controller/Entities/Person.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Person.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Person.cs b/MediaBrowser.Controller/Entities/Person.cs index 0a62655ee..6c277da56 100644 --- a/MediaBrowser.Controller/Entities/Person.cs +++ b/MediaBrowser.Controller/Entities/Person.cs @@ -55,6 +55,15 @@ namespace MediaBrowser.Controller.Entities return true; } + [IgnoreDataMember] + public override bool EnableAlphaNumericSorting + { + get + { + return false; + } + } + /// <summary> /// Gets a value indicating whether this instance is owned item. /// </summary> |
