commit ec1ee8a1378bae7db3aa218c4f140d95f9f9f7a7 parent 11ab582ccde5a09b2c901814558e857fcf297b93 Author: default <nobody@localhost> Date: Sat, 27 May 2023 13:43:50 +0200 Added the missing field "header" to mastodon acoount. Diffstat:
M | mastoapi.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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; }