silence ar not found

This commit is contained in:
Sam 2015-05-19 09:32:27 +10:00
parent a69451c75d
commit f26fef4340
2 changed files with 5 additions and 2 deletions

View File

@ -294,7 +294,7 @@ class PostSerializer < BasicPostSerializer
def post_custom_fields
@post_custom_fields ||=
if @topic_view
@topic_view.post_custom_fields && @topic_view.post_custom_fields[object.id]
(@topic_view.post_custom_fields && @topic_view.post_custom_fields[object.id]) || {}
else
object.custom_fields
end

View File

@ -22,7 +22,10 @@ if Rails.env.production?
# CSRF errors are not providing enough data
# suppress unconditionally for now
/^Can't verify CSRF token authenticity$/
/^Can't verify CSRF token authenticity$/,
# 404s can be dealt with elsewise
/^ActiveRecord::RecordNotFound /
]
end