我试图隐藏其所有者已删除其帐户的活动。所以我添加了这个
PublicActivity::Activity.order("created_at DESC").where( recipient: current_user).where.not(owner: nil)
但它返回
undefined method `image' for nil:NilClass
这意味着它将已删除用户的活动添加到记录中。我该如何隐藏它们?
我试图隐藏其所有者已删除其帐户的活动。所以我添加了这个
PublicActivity::Activity.order("created_at DESC").where( recipient: current_user).where.not(owner: nil)
但它返回
undefined method `image' for nil:NilClass
这意味着它将已删除用户的活动添加到记录中。我该如何隐藏它们?