aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/TV/Season.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-29 20:44:48 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-29 20:44:48 -0400
commit3c82d8540bffd9ae63a806e8a7a899cd5e142991 (patch)
treecb884b7f9d90b40290daf9896972f43bb9498c6a /MediaBrowser.Controller/Entities/TV/Season.cs
parent8da3a3680c89d865e320dbd20b9a9bdd870143d9 (diff)
update sortname generation
Diffstat (limited to 'MediaBrowser.Controller/Entities/TV/Season.cs')
-rw-r--r--MediaBrowser.Controller/Entities/TV/Season.cs2
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;
}