mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-24 23:02:44 +00:00
Sort Custom Formats by name
(cherry picked from commit e9bb1d52a72b20a58d1a672ecfa3797eda6f081a)
This commit is contained in:
parent
3790c65c9f
commit
ed59752268
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ private static List<CustomFormat> ParseCustomFormat(CustomFormatInput input, Lis
|
|||
}
|
||||
}
|
||||
|
||||
return matches;
|
||||
return matches.OrderBy(x => x.Name).ToList();
|
||||
}
|
||||
|
||||
private static List<CustomFormat> ParseCustomFormat(TrackFile trackFile, Artist artist, List<CustomFormat> allCustomFormats)
|
||||
|
|
Loading…
Reference in a new issue