mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Updated RELEASE_NOTES.
This commit is contained in:
parent
f7baafb416
commit
a41b66ce08
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ The avatar and/or the header images can now be deleted (contributed by louis77).
|
||||||
|
|
||||||
Code cleaning: HTTP status codes use names instead of hardcoded integers (contributed by louis77).
|
Code cleaning: HTTP status codes use names instead of hardcoded integers (contributed by louis77).
|
||||||
|
|
||||||
Mastodon API: some fixes for Mona and Tokodon apps, user credentials can now be edited from apps (contributed by louis77).
|
Mastodon API: fixed login problems with the official Mastodon API, IceCube and Toot! on iOS, some fixes for Mona and Tokodon apps, user credentials can now be edited from apps (contributed by louis77).
|
||||||
|
|
||||||
The webfinger content-type response header is now RFC-compliant (contributed by steve-bate).
|
The webfinger content-type response header is now RFC-compliant (contributed by steve-bate).
|
||||||
|
|
||||||
|
|
|
@ -1161,7 +1161,7 @@ void credentials_get(char **body, char **ctype, int *status, snac snac)
|
||||||
acct = xs_dict_append(acct, "url", snac.actor);
|
acct = xs_dict_append(acct, "url", snac.actor);
|
||||||
acct = xs_dict_append(acct, "locked", xs_stock(XSTYPE_FALSE));
|
acct = xs_dict_append(acct, "locked", xs_stock(XSTYPE_FALSE));
|
||||||
acct = xs_dict_append(acct, "bot", xs_dict_get(snac.config, "bot"));
|
acct = xs_dict_append(acct, "bot", xs_dict_get(snac.config, "bot"));
|
||||||
acct = xs_dict_append(acct, "emojis", xs_list_new());
|
acct = xs_dict_append(acct, "emojis", xs_stock(XSTYPE_LIST));
|
||||||
|
|
||||||
xs *src = xs_json_loads("{\"privacy\":\"public\", \"language\":\"en\","
|
xs *src = xs_json_loads("{\"privacy\":\"public\", \"language\":\"en\","
|
||||||
"\"follow_requests_count\": 0,"
|
"\"follow_requests_count\": 0,"
|
||||||
|
|
Loading…
Reference in a new issue