aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-09 20:38:01 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-09 20:38:01 -0500
commit0024aa44ee1f316dc2c9d7d41d9306dd168159ea (patch)
tree9f6c9a2499f6f588dbec4e87e946d175348525c1 /MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
parent064c9a02f7a12291d6c60962943a1a3be5c622e6 (diff)
update series resolving
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs b/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
index 80477e567..fe4832d48 100644
--- a/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
+++ b/MediaBrowser.Server.Implementations/Library/Resolvers/TV/SeasonResolver.cs
@@ -36,7 +36,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
{
var season = new Season
{
- IndexNumber = new SeasonPathParser(new ExtendedNamingOptions(), new RegexProvider()).Parse(args.Path, true).SeasonNumber
+ IndexNumber = new SeasonPathParser(new ExtendedNamingOptions(), new RegexProvider()).Parse(args.Path, true, true).SeasonNumber
};
if (season.IndexNumber.HasValue && season.IndexNumber.Value == 0)