summaryrefslogtreecommitdiff
path: root/mastoapi.c
diff options
context:
space:
mode:
authorHaijo7 <haijo7@protonmail.com>2023-06-11 16:53:50 +0200
committerHaijo7 <haijo7@protonmail.com>2023-06-11 16:53:50 +0200
commit9b1c5cc843e5f949cef0ebecd933f4442fb52577 (patch)
tree916e8a53739f9eb2abf8dc2b69ecdd8dd0fc4063 /mastoapi.c
parent2544ec92b20c44a9b0dee29817b394b1e5c74f70 (diff)
set bot to true in mastodon account if user type is service
Diffstat (limited to 'mastoapi.c')
-rw-r--r--mastoapi.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/mastoapi.c b/mastoapi.c
index ff5c756..3b9db28 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -497,11 +497,9 @@ xs_dict *mastoapi_account(const xs_dict *actor)
display_name = prefu;
const char *id = xs_dict_get(actor, "id");
- const char *type = xs_dict_get(actor, "type");
const char *pub = xs_dict_get(actor, "published");
xs *acct_md5 = xs_md5_hex(id, strlen(id));
acct = xs_dict_append(acct, "id", acct_md5);
- acct = xs_dict_append(acct, "type", type);
acct = xs_dict_append(acct, "username", prefu);
acct = xs_dict_append(acct, "display_name", display_name);
@@ -524,6 +522,11 @@ xs_dict *mastoapi_account(const xs_dict *actor)
if (xs_is_null(note))
note = "";
+ if (strcmp(xs_dict_get(actor, "type"), "Service") == 0)
+ acct = xs_dict_append(acct, "bot", "true");
+ else
+ acct = xs_dict_append(acct, "bot", "false");
+
acct = xs_dict_append(acct, "note", note);
acct = xs_dict_append(acct, "url", id);