mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2025-02-17 05:20:40 +00:00
Update MovieDetails.brs
Rating on Movies are showing as 3 decimal points instead of 1. I used the same format to do the calculation to 1 decimal point as in the TV shows
This commit is contained in:
parent
1893121fdf
commit
7bf1a8cd05
@ -53,6 +53,7 @@ sub itemContentChanged()
|
||||
|
||||
if itemData.communityRating <> invalid
|
||||
setFieldText("communityRating", itemData.communityRating)
|
||||
m.top.findNode("communityRating").text = str(int(itemData.communityRating * 10) / 10)
|
||||
else
|
||||
' hide the star icon
|
||||
m.top.findNode("communityRatingGroup").visible = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user