parse votes as number

Co-Authored-By: syeopite <70992037+syeopite@users.noreply.github.com>
このコミットが含まれているのは:
ChunkyProgrammer 2023-02-14 23:03:25 -05:00
コミット 4731480821
1個のファイルの変更1行の追加1行の削除

ファイルの表示

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