mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
Handle API identities with no name
This commit is contained in:
parent
c0cd5a5553
commit
faca9224ed
1 changed files with 2 additions and 2 deletions
|
@ -505,10 +505,10 @@ class Identity(StatorModel):
|
|||
)
|
||||
return {
|
||||
"id": self.pk,
|
||||
"username": self.username,
|
||||
"username": self.username or "",
|
||||
"acct": self.username if self.local else self.handle,
|
||||
"url": self.absolute_profile_uri(),
|
||||
"display_name": self.name,
|
||||
"display_name": self.name or "",
|
||||
"note": self.summary or "",
|
||||
"avatar": self.local_icon_url().absolute,
|
||||
"avatar_static": self.local_icon_url().absolute,
|
||||
|
|
Loading…
Reference in a new issue