diff --git a/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs b/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs index 892d28517..d9860e509 100644 --- a/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs +++ b/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs @@ -162,7 +162,7 @@ private static List ParseCustomFormat(CustomFormatInput input, Lis } } - return matches; + return matches.OrderBy(x => x.Name).ToList(); } private static List ParseCustomFormat(MovieFile movieFile, Movie movie, List allCustomFormats)