Fix nil error in focal_point? (#6537)

This commit is contained in:
Eugen Rochko 2018-02-22 17:42:33 +01:00 committed by GitHub
parent 5f3bee345d
commit b8535ad4df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class ActivityPub::ImageSerializer < ActiveModel::Serializer
end
def focal_point?
object.respond_to?(:meta) && object.meta['focus'].is_a?(Hash)
object.respond_to?(:meta) && object.meta.is_a?(Hash) && object.meta['focus'].is_a?(Hash)
end
def focal_point