Merge branch 'main' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2021-11-19 18:51:41 +01:00
28 changed files with 337 additions and 333 deletions

View File

@@ -59,7 +59,7 @@ class LinkDetailsExtractor
end
def json
@json ||= Oj.load(@data)
@json ||= first_of_value(Oj.load(@data))
end
end
@@ -178,6 +178,8 @@ class LinkDetailsExtractor
@structured_data ||= begin
json_ld = document.xpath('//script[@type="application/ld+json"]').map(&:content).first
json_ld.present? ? StructuredData.new(json_ld) : nil
rescue Oj::ParseError
nil
end
end

View File

@@ -46,7 +46,9 @@ class Webfinger
def body_from_webfinger(url = standard_url, use_fallback = true)
webfinger_request(url).perform do |res|
if res.code == 200
res.body_with_limit
body = res.body_with_limit
raise Webfinger::Error, "Request for #{@uri} returned empty response" if body.empty?
body
elsif res.code == 404 && use_fallback
body_from_host_meta
elsif res.code == 410