Engagement was calculated as 0-1 but displayed as a percentage
pull/1832/head
mark9064 2021-02-28 11:59:46 +00:00 zatwierdzone przez GitHub
rodzic 489d0151ad
commit 9ae18b0b3b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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?