1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00

Sort Custom Formats by name

(cherry picked from commit e9bb1d52a72b20a58d1a672ecfa3797eda6f081a)
This commit is contained in:
Bogdan
2023-10-21 10:06:22 +03:00
parent 80db9a7dd4
commit 233b85aaf3

View File

@@ -162,7 +162,7 @@ namespace NzbDrone.Core.CustomFormats
}
}
return matches;
return matches.OrderBy(x => x.Name).ToList();
}
private static List<CustomFormat> ParseCustomFormat(MovieFile movieFile, Movie movie, List<CustomFormat> allCustomFormats)