Allow VerifyLinkService to accept backlinks with differing case (#18320)

th-downstream
Sara Golemon 3 years ago committed by GitHub
parent cde543ac9c
commit 7c1bd95c9b

@ -28,7 +28,7 @@ class VerifyLinkService < BaseService
links = Nokogiri::HTML(@body).xpath('//a[contains(concat(" ", normalize-space(@rel), " "), " me ")]|//link[contains(concat(" ", normalize-space(@rel), " "), " me ")]')
if links.any? { |link| link['href'] == @link_back }
if links.any? { |link| link['href'].downcase == @link_back.downcase }
true
elsif links.empty?
false

Loading…
Cancel
Save