Update search_result.rb

Fix code styling
This commit is contained in:
Régis Hanol 2013-06-29 21:45:15 +02:00
parent 7681ba0c32
commit 5df9370ebe
1 changed files with 6 additions and 3 deletions

View File

@ -41,9 +41,12 @@ class Search
end end
def self.from_post(p) def self.from_post(p)
# we want the topic link when it's the OP if p.post_number == 1
return SearchResult.from_topic(p.topic) if p.post_number == 1 # we want the topic link when it's the OP
SearchResult.new(type: :topic, id: p.topic.id, title: p.topic.title, url: p.url) SearchResult.from_topic(p.topic)
else
SearchResult.new(type: :topic, id: p.topic.id, title: p.topic.title, url: p.url)
end
end end
end end