Round CommunityRating to nearest tenths

pull/13145/head
SenorSmartyPants 5 months ago
parent a7e5f43a8a
commit 12c14ddb24

@ -50,7 +50,7 @@ namespace MediaBrowser.Model.Extensions
return 0;
})
.ThenByDescending(i => i.CommunityRating ?? 0)
.ThenByDescending(i => Math.Round(i.CommunityRating ?? 0, 1) )
.ThenByDescending(i => i.VoteCount ?? 0);
}
}

Loading…
Cancel
Save