mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Don't autocomplete local users if they are already added.
This commit is contained in:
parent
9bc10da8a5
commit
81cec4ab27
11
mastoapi.c
11
mastoapi.c
@ -1014,21 +1014,24 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
||||
while (xs_list_iter(&p, &v)) {
|
||||
snac user;
|
||||
|
||||
/* skip this same user */
|
||||
if (strcmp(v, xs_dict_get(snac1.config, "uid")) == 0)
|
||||
continue;
|
||||
|
||||
if (user_open(&user, v)) {
|
||||
/* skip if the uid does not start with the query */
|
||||
xs *v2 = xs_tolower_i(xs_dup(v));
|
||||
if (!xs_startswith(v2, q))
|
||||
continue;
|
||||
|
||||
if (xs_startswith(v2, q)) {
|
||||
if (user_open(&user, v)) {
|
||||
/* if it's not already seen, add it */
|
||||
if (xs_set_add(&seen, user.actor) == 1) {
|
||||
xs *actor = msg_actor(&user);
|
||||
xs *acct = mastoapi_account(actor);
|
||||
|
||||
out = xs_list_append(out, acct);
|
||||
}
|
||||
|
||||
xs_set_add(&seen, user.actor);
|
||||
|
||||
user_free(&user);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user