summaryrefslogtreecommitdiff
path: root/mastoapi.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-05-27 13:43:50 +0200
committerdefault <nobody@localhost>2023-05-27 13:43:50 +0200
commitec1ee8a1378bae7db3aa218c4f140d95f9f9f7a7 (patch)
tree17b74b9d19d3ef5fed5cecddf2a7f5b93cf0ac99 /mastoapi.c
parent11ab582ccde5a09b2c901814558e857fcf297b93 (diff)
Added the missing field "header" to mastodon acoount.
Diffstat (limited to 'mastoapi.c')
-rw-r--r--mastoapi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mastoapi.c b/mastoapi.c
index 6403e06..dc8320d 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -581,6 +581,8 @@ xs_dict *mastoapi_account(const xs_dict *actor)
acct = xs_dict_append(acct, "emojis", eml);
}
+ acct = xs_dict_append(acct, "header", "");
+
return acct;
}