mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Add missing fields to account verification
This allows the Mona iOS app to successfully sign in. I wasn't sure what a suitable value for `last_status_at` would be so I just copied `published` since it's the right format. This also just sets the `bot` field to false regardless of the user's configuration, which probably isn't ideal.
This commit is contained in:
parent
32ce4b0659
commit
ca27d0248a
1 changed files with 5 additions and 0 deletions
|
@ -1118,9 +1118,14 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
||||||
acct = xs_dict_append(acct, "acct", xs_dict_get(snac1.config, "uid"));
|
acct = xs_dict_append(acct, "acct", xs_dict_get(snac1.config, "uid"));
|
||||||
acct = xs_dict_append(acct, "display_name", xs_dict_get(snac1.config, "name"));
|
acct = xs_dict_append(acct, "display_name", xs_dict_get(snac1.config, "name"));
|
||||||
acct = xs_dict_append(acct, "created_at", xs_dict_get(snac1.config, "published"));
|
acct = xs_dict_append(acct, "created_at", xs_dict_get(snac1.config, "published"));
|
||||||
|
acct = xs_dict_append(acct, "last_status_at", xs_dict_get(snac1.config, "published"));
|
||||||
acct = xs_dict_append(acct, "note", xs_dict_get(snac1.config, "bio"));
|
acct = xs_dict_append(acct, "note", xs_dict_get(snac1.config, "bio"));
|
||||||
acct = xs_dict_append(acct, "url", snac1.actor);
|
acct = xs_dict_append(acct, "url", snac1.actor);
|
||||||
acct = xs_dict_append(acct, "header", "");
|
acct = xs_dict_append(acct, "header", "");
|
||||||
|
acct = xs_dict_append(acct, "header_static", "");
|
||||||
|
acct = xs_dict_append(acct, "locked", xs_stock_false);
|
||||||
|
// FIXME: check value of "type" to set this correctly?
|
||||||
|
acct = xs_dict_append(acct, "bot", xs_stock_false);
|
||||||
|
|
||||||
xs *src = xs_json_loads("{\"privacy\":\"public\","
|
xs *src = xs_json_loads("{\"privacy\":\"public\","
|
||||||
"\"sensitive\":false,\"fields\":[],\"note\":\"\"}");
|
"\"sensitive\":false,\"fields\":[],\"note\":\"\"}");
|
||||||
|
|
Loading…
Reference in a new issue