fix typo in image serializer (#6530)

respond to!
master
beatrix 7 years ago committed by Eugen Rochko
parent c71aa468b5
commit 755aad534a
  1. 2
      app/serializers/activitypub/image_serializer.rb

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

Loading…
Cancel
Save