Merge branch 'main' into glitch-soc/merge-upstream
This commit is contained in:
@@ -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
|
||||
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user