Fix nil error in focal_point? (#6537)
parent
51e1e65c84
commit
692dfd9a93
|
@ -19,7 +19,7 @@ class ActivityPub::ImageSerializer < ActiveModel::Serializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def focal_point?
|
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
|
end
|
||||||
|
|
||||||
def focal_point
|
def focal_point
|
||||||
|
|
Loading…
Reference in New Issue