mirror of https://github.com/tootsuite/mastodon
Fix handling of multiple Link headers (that should not be a thing though)
parent
2603c7e69f
commit
e4aebad35a
|
@ -29,7 +29,7 @@ class FetchAtomService < BaseService
|
||||||
def process_headers(url, response)
|
def process_headers(url, response)
|
||||||
Rails.logger.debug "Processing link header"
|
Rails.logger.debug "Processing link header"
|
||||||
|
|
||||||
link_header = LinkHeader.parse(response['Link'])
|
link_header = LinkHeader.parse(response['Link'].is_a?(Array) ? response['Link'].first : response['Link'])
|
||||||
alternate_link = link_header.find_link(['rel', 'alternate'], ['type', 'application/atom+xml'])
|
alternate_link = link_header.find_link(['rel', 'alternate'], ['type', 'application/atom+xml'])
|
||||||
|
|
||||||
return process_html(fetch(url)) if alternate_link.nil?
|
return process_html(fetch(url)) if alternate_link.nil?
|
||||||
|
|
Loading…
Reference in New Issue