mirror of
https://github.com/Radarr/Radarr
synced 2025-12-15 21:03:27 +01:00
Sort Custom Formats by name
(cherry picked from commit e9bb1d52a72b20a58d1a672ecfa3797eda6f081a)
This commit is contained in:
parent
80db9a7dd4
commit
233b85aaf3
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ private static List<CustomFormat> ParseCustomFormat(CustomFormatInput input, Lis
|
|||
}
|
||||
}
|
||||
|
||||
return matches;
|
||||
return matches.OrderBy(x => x.Name).ToList();
|
||||
}
|
||||
|
||||
private static List<CustomFormat> ParseCustomFormat(MovieFile movieFile, Movie movie, List<CustomFormat> allCustomFormats)
|
||||
|
|
|
|||
Loading…
Reference in a new issue