Some mention formatting tweaks.

This commit is contained in:
default 2023-01-13 07:12:19 +01:00
parent e58eb068fb
commit 11ba44ff9f

View file

@ -277,11 +277,12 @@ void process_tags(snac *snac, const char *content, d_char **n_content, d_char **
if ((n & 0x1)) { if ((n & 0x1)) {
if (*v == '@') { if (*v == '@') {
/* query the webfinger about this fellow */ /* query the webfinger about this fellow */
xs *v2 = xs_strip_chars_i(xs_dup(v), "@.");
xs *actor = NULL; xs *actor = NULL;
xs *uid = NULL; xs *uid = NULL;
int status; int status;
status = webfinger_request(v + 1, &actor, &uid); status = webfinger_request(v2, &actor, &uid);
if (valid_status(status)) { if (valid_status(status)) {
xs *d = xs_dict_new(); xs *d = xs_dict_new();