mirror of
https://github.com/jellyfin/jellyfin-plugin-anidb.git
synced 2025-02-19 21:52:14 +00:00
Round community ratings to 1 decimal place
This commit is contained in:
parent
3030a961c0
commit
4b9dda2862
@ -391,7 +391,7 @@ namespace MediaBrowser.Plugins.Anime.Providers.AniDB
|
||||
CultureInfo.InvariantCulture,
|
||||
out rating))
|
||||
{
|
||||
series.CommunityRating = rating;
|
||||
series.CommunityRating = (float)Math.Round(rating, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user