Fix nil error in focal_point? (#6537)
这个提交存在于:
父节点
5f3bee345d
当前提交
b8535ad4df
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -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
|
||||
|
|
|
|||
正在加载…
添加表格
在新工单中引用