mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-18 03:01:32 +02:00
Sort Custom Formats by name
This commit is contained in:
parent
b183743d9f
commit
e9bb1d52a7
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue