1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00

Sort Custom Formats by name

This commit is contained in:
Bogdan 2023-10-21 10:06:22 +03:00 committed by Mark McDowall
parent b183743d9f
commit e9bb1d52a7

View File

@ -150,7 +150,7 @@ private static List<CustomFormat> ParseCustomFormat(CustomFormatInput input, Lis
}
}
return matches;
return matches.OrderBy(x => x.Name).ToList();
}
private static List<CustomFormat> ParseCustomFormat(EpisodeFile episodeFile, Series series, List<CustomFormat> allCustomFormats)