mirror of
https://github.com/iv-org/invidious
synced 2024-11-24 12:03:26 +01:00
Fix engagement
Engagement was calculated as 0-1 but displayed as a percentage
This commit is contained in:
parent
489d0151ad
commit
9ae18b0b3b
@ -764,7 +764,7 @@ struct Video
|
|||||||
end
|
end
|
||||||
|
|
||||||
def engagement : Float64
|
def engagement : Float64
|
||||||
((likes + dislikes) / views).round(4)
|
(((likes + dislikes) / views) * 100).round(4)
|
||||||
end
|
end
|
||||||
|
|
||||||
def reason : String?
|
def reason : String?
|
||||||
|
Loading…
Reference in New Issue
Block a user