mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix average rating where likes and dislikes are null
This commit is contained in:
parent
0992587da5
commit
8f57388cd3
1 changed files with 3 additions and 1 deletions
|
@ -649,7 +649,9 @@ def fetch_video(id, proxies, region)
|
||||||
dislikes = dislikes.try &.content.delete(",").try &.to_i?
|
dislikes = dislikes.try &.content.delete(",").try &.to_i?
|
||||||
dislikes ||= 0
|
dislikes ||= 0
|
||||||
|
|
||||||
info["avg_rating"] = "#{(likes.to_f/(likes.to_f + dislikes.to_f) * 4 + 1)}"
|
avg_rating = (likes.to_f/(likes.to_f + dislikes.to_f) * 4 + 1)
|
||||||
|
avg_rating = avg_rating.nan? ? 0.0 : avg_rating
|
||||||
|
info["avg_rating"] = "#{avg_rating}"
|
||||||
|
|
||||||
description = html.xpath_node(%q(//p[@id="eow-description"]))
|
description = html.xpath_node(%q(//p[@id="eow-description"]))
|
||||||
description = description ? description.to_xml : ""
|
description = description ? description.to_xml : ""
|
||||||
|
|
Loading…
Reference in a new issue