summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/invidious.cr2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/invidious.cr b/src/invidious.cr
index 41c1db9c..b8c62972 100644
--- a/src/invidious.cr
+++ b/src/invidious.cr
@@ -281,7 +281,9 @@ get "/watch" do |env|
rvs << HTTP::Params.parse(rv).to_h
end
+ # rating = (video.likes.to_f/(video.likes.to_f + video.dislikes.to_f) * 4 + 1)
rating = video.info["avg_rating"].to_f64
+
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
playability_status = video.player_response["playabilityStatus"]?