From 1fd7ff5655191385d68f3c65191ed70c0b2e6f0b Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Tue, 2 Apr 2019 08:51:28 -0500 Subject: [PATCH] Add scheme to author thumbnail --- src/invidious/helpers/helpers.cr | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/invidious/helpers/helpers.cr b/src/invidious/helpers/helpers.cr index ad744c74..33d7b6f4 100644 --- a/src/invidious/helpers/helpers.cr +++ b/src/invidious/helpers/helpers.cr @@ -200,6 +200,12 @@ def extract_items(nodeset, ucid = nil, author_name = nil) author_thumbnail = node.xpath_node(%q(.//div/span/img)).try &.["data-thumb"]? author_thumbnail ||= node.xpath_node(%q(.//div/span/img)).try &.["src"] + if author_thumbnail + author_thumbnail = URI.parse(author_thumbnail) + author_thumbnail.scheme = "https" + author_thumbnail = author_thumbnail.to_s + end + author_thumbnail ||= "" subscriber_count = node.xpath_node(%q(.//span[contains(@class, "yt-subscriber-count")])).try &.["title"].delete(",").to_i?