Skip link-back check if body is nil (#9107)

th-downstream
abcang 6 years ago committed by Eugen Rochko
parent 3a115d3f49
commit 95ef0e144a

@ -25,7 +25,7 @@ class VerifyLinkService < BaseService
end
def link_back_present?
return false if @body.empty?
return false if @body.blank?
links = Nokogiri::HTML(@body).xpath('//a[contains(concat(" ", normalize-space(@rel), " "), " me ")]|//link[contains(concat(" ", normalize-space(@rel), " "), " me ")]')

Loading…
Cancel
Save