Handle missing title fields in VideoRendererParser.parse

pull/2497/head
Frank de Lange 3 years ago
parent 39c27f0c66
commit c44c1003af

@ -43,7 +43,7 @@ private module Parsers
private def self.parse(item_contents, author_fallback) private def self.parse(item_contents, author_fallback)
video_id = item_contents["videoId"].as_s video_id = item_contents["videoId"].as_s
title = extract_text(item_contents["title"]) || "" title = extract_text(item_contents["title"]?) || ""
# Extract author information # Extract author information
if author_info = item_contents.dig?("ownerText", "runs", 0) if author_info = item_contents.dig?("ownerText", "runs", 0)

Loading…
Cancel
Save