diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-29 20:44:48 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-29 20:44:48 -0400 |
| commit | 3c82d8540bffd9ae63a806e8a7a899cd5e142991 (patch) | |
| tree | cb884b7f9d90b40290daf9896972f43bb9498c6a /MediaBrowser.Controller/Entities/TV/Season.cs | |
| parent | 8da3a3680c89d865e320dbd20b9a9bdd870143d9 (diff) | |
update sortname generation
Diffstat (limited to 'MediaBrowser.Controller/Entities/TV/Season.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Season.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Season.cs b/MediaBrowser.Controller/Entities/TV/Season.cs index 17494eb08..4ccf6d623 100644 --- a/MediaBrowser.Controller/Entities/TV/Season.cs +++ b/MediaBrowser.Controller/Entities/TV/Season.cs @@ -145,7 +145,7 @@ namespace MediaBrowser.Controller.Entities.TV /// Creates the name of the sort. /// </summary> /// <returns>System.String.</returns> - protected override string CreateSortName() + protected override string CreateSortNameInternal() { return IndexNumber != null ? IndexNumber.Value.ToString("0000") : Name; } |
