diff --git a/NzbDrone.Core.Test/ParserTest.cs b/NzbDrone.Core.Test/ParserTest.cs
index 0aa41a4f9..9415a58c9 100644
--- a/NzbDrone.Core.Test/ParserTest.cs
+++ b/NzbDrone.Core.Test/ParserTest.cs
@@ -62,6 +62,7 @@ namespace NzbDrone.Core.Test
[TestCase("S6E02-Unwrapped-(Playing With Food) - [DarkData]", "", 6, 2)]
[TestCase("S06E03-Unwrapped-(Number Ones Unwrapped) - [DarkData]", "", 6, 3)]
[TestCase("The Mentalist S02E21 18 5 4 720p WEB DL DD5 1 h 264 EbP", "The Mentalist", 2, 21)]
+ [TestCase("01x04 - Halloween, Part 1 - 720p WEB-DL", "", 1, 4)]
public void ParseTitle_single(string postTitle, string title, int seasonNumber, int episodeNumber)
{
var result = Parser.ParseTitle(postTitle);
diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs
index 04ae8936b..7758a6902 100644
--- a/NzbDrone.Core/Parser.cs
+++ b/NzbDrone.Core/Parser.cs
@@ -33,10 +33,6 @@ namespace NzbDrone.Core
new Regex(@"^(?
.+?)(?:\W+S?(?(?\d{2}(?!\d+)))+)\W?(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
- //Mini-Series, treated as season 1, episodes are labeled as Part01, Part 01, Part.1
- new Regex(@"^(?.+?)(?:\W+(?:(?:Part\W?|(?\d{1,2}(?!\d+)))+)\W?(?!\\)",
- RegexOptions.IgnoreCase | RegexOptions.Compiled),
-
//Episodes without a title, Single (S01E05, 1x05) AND Multi (S01E04E05, 1x04x05, etc)
new Regex(@"^(?:S?(?(?\d{1,2}(?!\d+)))+\W*)+\W?(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
@@ -53,6 +49,10 @@ namespace NzbDrone.Core
new Regex(@"^(?.+?)?(?:\W?(?(?\d{2}(?!p|i|\d+)))+\W?(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
+ //Mini-Series, treated as season 1, episodes are labeled as Part01, Part 01, Part.1
+ new Regex(@"^(?.+?)(?:\W+(?:(?:Part\W?|(?\d{1,2}(?!\d+)))+)\W?(?!\\)",
+ RegexOptions.IgnoreCase | RegexOptions.Compiled),
+
//Supports Season only releases
new Regex(@"^(?.+?)\W(?:S|Season)\W?(?\d{1,2}(?!\d+))\W?(?EXTRAS|SUBPACK)?(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled)