Merge pull request #1832 from mark9064/patch-1

Fix engagement
pull/1868/head
TheFrenchGhosty 2021-03-05 01:00:42 +01:00 zatwierdzone przez GitHub
commit 790167e914
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?