This should work

This commit is contained in:
RadoslavL 2023-11-14 10:00:18 +02:00
parent d098e5ae9b
commit 03f9962a47

View File

@ -38,7 +38,7 @@ def parse_related_video(related : JSON::Any, published : String? = nil) : Hash(S
publishedText = related["publishedTimeText"]? publishedText = related["publishedTimeText"]?
if !publishedText.nil? if !publishedText.nil?
publishedSimpleText = publishedText["simpleText"].to_s publishedSimpleText = publishedText["simpleText"].to_s
else else
publishedSimpleText = nil publishedSimpleText = nil
end end
@ -55,7 +55,7 @@ def parse_related_video(related : JSON::Any, published : String? = nil) : Hash(S
"short_view_count" => JSON::Any.new(short_view_count || "0"), "short_view_count" => JSON::Any.new(short_view_count || "0"),
"author_verified" => JSON::Any.new(author_verified), "author_verified" => JSON::Any.new(author_verified),
"published" => JSON::Any.new(published || ""), "published" => JSON::Any.new(published || ""),
"publishedText" => JSON::Any.new(publishedSimpleText || ""), "publishedText" => JSON::Any.new(publishedSimpleText || ""),
} }
end end