aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-16 15:44:08 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-16 15:44:08 -0500
commit5fdd7ec6725a3acb3365e92c090f2e90bbbf122f (patch)
treee6032d9319cf2f459d2c5e718c36669c21d6dbfe /MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
parent4edcab9c11cf8e8cfbfc0bd9afe7b7ec067fd1e3 (diff)
add new naming project
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs b/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
index 70280d8d3..d3580aaf8 100644
--- a/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
+++ b/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
@@ -34,9 +34,9 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
{
var season = new Season
{
- IndexNumber = TVUtils.GetSeasonNumberFromPath(args.Path)
+ IndexNumber = SeriesResolver.GetSeasonNumberFromPath(args.Path)
};
-
+
if (season.IndexNumber.HasValue && season.IndexNumber.Value == 0)
{
season.Name = _config.Configuration.SeasonZeroDisplayName;