From 0df06f6d328b66a023a2c23d42a5ce8c092ede0d Mon Sep 17 00:00:00 2001 From: giles Date: Sun, 22 Feb 2026 14:46:34 +0000 Subject: [PATCH] Fix actor links: followers link to their remote profile Following links to local actor timeline (cached posts), followers link to their profile on their own instance to avoid 404s. Co-Authored-By: Claude Opus 4.6 --- templates/federation/_actor_list_items.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/templates/federation/_actor_list_items.html b/templates/federation/_actor_list_items.html index b294721..bbe445b 100644 --- a/templates/federation/_actor_list_items.html +++ b/templates/federation/_actor_list_items.html @@ -9,9 +9,15 @@ {% endif %}
- - {{ a.display_name or a.preferred_username }} - + {% if list_type == "following" and a.id %} + + {{ a.display_name or a.preferred_username }} + + {% else %} + + {{ a.display_name or a.preferred_username }} + + {% endif %}
@{{ a.preferred_username }}@{{ a.domain }}
{% if a.summary %}
{{ a.summary | striptags }}