FIX: Fix build.

Follow-up to 25453eb.
This commit is contained in:
Bianca Nenciu 2019-05-22 17:39:08 +03:00
parent 98a17edc90
commit 631b16ef86
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ module JsonError
return { errors: [message] } if message.present?
end
return { errors: [I18n.t('not_found')] } if obj.not_found
return { errors: [I18n.t('not_found')] } if obj.is_a?(HasErrors) && obj.not_found
# Log a warning (unless obj is nil)
Rails.logger.warn("create_errors_json called with unrecognized type: #{obj.inspect}") if obj