posts with no url should return a 404

This commit is contained in:
Sam 2015-08-12 07:28:36 +10:00
parent 267d8be1f5
commit 75b4972682

View file

@ -340,7 +340,11 @@ class Post < ActiveRecord::Base
end
def url
Post.url(topic.slug, topic.id, post_number)
if topic
Post.url(topic.slug, topic.id, post_number)
else
"/404"
end
end
def self.url(slug, topic_id, post_number)