Ignore HEAD method if does not support (#5949)

This commit is contained in:
Yamagishi Kazutoshi 2017-12-10 00:53:40 +09:00 committed by Eugen Rochko
parent a72d03f43c
commit e7d55df38d

View file

@ -38,7 +38,7 @@ class FetchLinkCardService < BaseService
@card ||= PreviewCard.new(url: @url) @card ||= PreviewCard.new(url: @url)
res = Request.new(:head, @url).perform res = Request.new(:head, @url).perform
return if res.code != 200 || res.mime_type != 'text/html' return if res.code != 405 && (res.code != 200 || res.mime_type != 'text/html')
attempt_oembed || attempt_opengraph attempt_oembed || attempt_opengraph
end end