mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-22 14:33:30 -07:00
Sort Custom Formats by name
(cherry picked from commit e9bb1d52a72b20a58d1a672ecfa3797eda6f081a)
This commit is contained in:
parent
7e100c806d
commit
dc5c0ea18d
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ namespace NzbDrone.Core.CustomFormats
|
|||
}
|
||||
}
|
||||
|
||||
return matches;
|
||||
return matches.OrderBy(x => x.Name).ToList();
|
||||
}
|
||||
|
||||
private static List<CustomFormat> ParseCustomFormat(TrackFile trackFile, Artist artist, List<CustomFormat> allCustomFormats)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue