mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
[bugfix] Serialize empty conversation account list as empty list, not null (#3137)
This commit is contained in:
parent
6533531cf1
commit
db0a47126e
1 changed files with 3 additions and 2 deletions
|
@ -1754,6 +1754,7 @@ func (c *Converter) ConversationToAPIConversation(
|
|||
apiConversation := &apimodel.Conversation{
|
||||
ID: conversation.ID,
|
||||
Unread: !*conversation.Read,
|
||||
Accounts: []apimodel.Account{},
|
||||
}
|
||||
for _, account := range conversation.OtherAccounts {
|
||||
var apiAccount *apimodel.Account
|
||||
|
|
Loading…
Reference in a new issue