Commit 31172475 authored by Robert Speicher's avatar Robert Speicher

Better guard against nil projects in ReferenceFilter

parent 9eaaa7cd
......@@ -25,7 +25,8 @@ module Gitlab
ISSUE_PATTERN = /(?<issue>([A-Z\-]+-)\d+)/
def call
return doc if project.default_issues_tracker?
# Early return if the project isn't using an external tracker
return doc if project.nil? || project.default_issues_tracker?
replace_text_nodes_matching(ISSUE_PATTERN) do |content|
issue_link_filter(content)
......
......@@ -42,10 +42,11 @@ module Gitlab
#
# Returns the updated Nokogiri::XML::Document object.
def replace_text_nodes_matching(pattern)
return doc if project.nil?
doc.search('text()').each do |node|
content = node.to_html
next if project.nil?
next unless content.match(pattern)
next if ignored_ancestry?(node)
......@@ -59,6 +60,9 @@ module Gitlab
doc
end
# Ensure that a :project key exists in context
#
# Note that while the key might exist, its value could be nil!
def validate
needs :project
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment