Fix account serializer crash if account doesn't have a user (#23428)

local
Jeong Arm 1 year ago committed by GitHub
parent bb89f0af8a
commit 523a86618f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/serializers/rest/account_serializer.rb

@ -125,10 +125,10 @@ class REST::AccountSerializer < ActiveModel::Serializer
end
def roles
if object.suspended?
if object.suspended? || object.user.nil?
[]
else
[object.user.role].compact.filter { |role| role.highlighted? }
[object.user.role].compact.filter(&:highlighted?)
end
end

Loading…
Cancel
Save