Use username as display name for suspended users or users with blank display names (#25276)

local
Claire 10 months ago committed by GitHub
parent 59478a1b46
commit 14fad60384
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/serializers/activitypub/actor_serializer.rb

@ -99,7 +99,7 @@ class ActivityPub::ActorSerializer < ActivityPub::Serializer
end
def name
object.suspended? ? '' : object.display_name
object.suspended? ? object.username : (object.display_name.presence || object.username)
end
def summary

Loading…
Cancel
Save