mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 08:53:13 +05:30
parse votes as number
Co-Authored-By: syeopite <70992037+syeopite@users.noreply.github.com>
This commit is contained in:
parent
aecbafbc7b
commit
4731480821
@ -191,7 +191,7 @@ def fetch_channel_community(ucid, continuation, locale, format, thin_mode)
|
||||
when .has_key?("pollRenderer")
|
||||
attachment = attachment["pollRenderer"]
|
||||
json.field "type", "poll"
|
||||
json.field "totalVotes", attachment["totalVotes"]["simpleText"].as_s
|
||||
json.field "totalVotes", short_text_to_number(attachment["totalVotes"]["simpleText"].as_s.split(" ")[0])
|
||||
json.field "choices" do
|
||||
json.array do
|
||||
attachment["choices"].as_a.each do |choice|
|
||||
|
Loading…
Reference in New Issue
Block a user