diff options
author | default <nobody@localhost> | 2024-03-01 15:09:55 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-03-01 15:09:55 +0100 |
commit | 69724220a4ea027b38331a3165142f17936a8b9e (patch) | |
tree | 46ad7cb3cc4646df9307c13b712d390f0c00d8e4 /mastoapi.c | |
parent | 96c75d99383dbcdfd3f7a8242a7bac71ca70b24a (diff) |
mastoapi: Fixed bug in account searching.
Diffstat (limited to 'mastoapi.c')
-rw-r--r-- | mastoapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2035,7 +2035,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, char *actor = NULL; char *user = NULL; - if (valid_status(webfinger_request(q, &actor, &user) && actor)) { + if (valid_status(webfinger_request(q, &actor, &user)) && actor) { xs *actor_o = NULL; if (valid_status(actor_request(&snac1, actor, &actor_o))) { |