From e1186cac5460b2e47b9e0db04ee3c619851aabcb Mon Sep 17 00:00:00 2001 From: grunfink Date: Sun, 22 Mar 2026 09:06:21 +0100 Subject: Commented out aliases in webfinger, as they are generating following problems. At least for misskey, because it's using the /users/... alias instead of the real actor id. --- activitypub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index e1d4d2d..a983d82 100644 --- a/activitypub.c +++ b/activitypub.c @@ -2799,7 +2799,7 @@ int process_input_message(snac *snac, const xs_dict *msg, const xs_dict *req) "handling follow: %s", actor)); return 1; } - if (strcmp(id, snac->actor) != 0) + if (strcmp(id, snac->actor) != 0 && strcmp(id, snac->actor_alt) != 0) snac_debug(snac, 1, xs_fmt("Undo + Follow from %s not for us (%s)", actor, id)); else if (valid_status(follower_del(snac, actor))) { -- cgit