Merge pull request #1832 from mark9064/patch-1

Fix engagement
This commit is contained in:
TheFrenchGhosty
2021-03-05 01:00:42 +01:00
committed by GitHub

View File

@ -764,7 +764,7 @@ struct Video
end
def engagement : Float64
((likes + dislikes) / views).round(4)
(((likes + dislikes) / views) * 100).round(4)
end
def reason : String?