diff options
| author | grunfink <grunfink@comam.es> | 2026-03-22 09:06:21 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2026-03-22 09:06:21 +0100 |
| commit | e1186cac5460b2e47b9e0db04ee3c619851aabcb (patch) | |
| tree | 2ca30257ae719932f5a2e4fe51f68cd2ade7789e /activitypub.c | |
| parent | b5524d7e265e49bdc57b8aaa86794ee85f40b13c (diff) | |
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.
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
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))) { |