mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Sorting of Quality column in Interactive Search
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
@@ -30,8 +30,7 @@ namespace Lidarr.Api.V1.Indexers
|
|||||||
{
|
{
|
||||||
release.QualityWeight = decision.RemoteAlbum
|
release.QualityWeight = decision.RemoteAlbum
|
||||||
.Artist
|
.Artist
|
||||||
.QualityProfile.Value
|
.QualityProfile.Value.GetIndex(release.Quality.Quality).Index * 100;
|
||||||
.Items.FindIndex(v => v.Quality == release.Quality.Quality) * 100;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
release.QualityWeight += release.Quality.Revision.Real * 10;
|
release.QualityWeight += release.Quality.Revision.Real * 10;
|
||||||
|
|||||||
Reference in New Issue
Block a user