mirror of
https://github.com/Readarr/Readarr
synced 2026-05-08 12:42:51 +02:00
Fixed: Sorting of Quality column in Interactive Search
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
8440675ad9
commit
c8184c362a
1 changed files with 1 additions and 2 deletions
|
|
@ -30,8 +30,7 @@ protected virtual ReleaseResource MapDecision(DownloadDecision decision, int ini
|
||||||
{
|
{
|
||||||
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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue