From e21a933a6ecacdc2ca3b3ed1c495714ba36afa3d Mon Sep 17 00:00:00 2001 From: Giuseppe Ranieri Date: Thu, 19 Mar 2026 10:41:34 +0100 Subject: Implemented tootfinder.ch compatibility mimic Mastodon Behaviour Added aliases list on webfinger response Return the /users/ in the webfinger response ( mimic Mastodon ) Implemented /users endpoint redirect to access actor profile Files changed: modified: data.c modified: httpd.c modified: snac.h modified: webfinger.c --- snac.h | 1 + 1 file changed, 1 insertion(+) (limited to 'snac.h') diff --git a/snac.h b/snac.h index 390b852..579fe9c 100644 --- a/snac.h +++ b/snac.h @@ -62,6 +62,7 @@ typedef struct { xs_dict *key; /* keypair */ xs_dict *links; /* validated links */ xs_str *actor; /* actor url */ + xs_str *actor_alt; /* actor alternative url */ xs_str *md5; /* actor url md5 */ const xs_dict *lang;/* string translation dict */ const char *tz; /* configured timezone */ -- cgit