mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-17 04:32:22 +00:00
Skip link-back check if body is nil (#9107)
This commit is contained in:
parent
161aeadbb4
commit
1e2695198a
|
@ -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…
Reference in a new issue