diff options
author | charlotte ✨ <charlotte@som.codes> | 2024-11-01 01:56:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-01 01:56:25 +0000 |
commit | 68bb45105160597f420e401822837d4de675cb30 (patch) | |
tree | 928583679f43e64e27835f08cf9c8f4c0358c01a /bskyweb | |
parent | 193954d4018e7017cac60c4d6666de59002fbf9a (diff) | |
download | voidsky-68bb45105160597f420e401822837d4de675cb30.tar.zst |
Link to app.bsky.actor.profile record in link rel=alternate (#6046)
This disambiguates ATProto identities from Bluesky profiles
Diffstat (limited to 'bskyweb')
-rw-r--r-- | bskyweb/templates/profile.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyweb/templates/profile.html b/bskyweb/templates/profile.html index cee8bae6a..ab84dd157 100644 --- a/bskyweb/templates/profile.html +++ b/bskyweb/templates/profile.html @@ -37,7 +37,7 @@ {%- if requestHost %} <link rel="alternate" type="application/rss+xml" href="https://{{ requestHost }}/profile/{{ profileView.Did }}/rss"> {% endif %} - <link rel="alternate" href="at://{{ profileView.Did }}" /> + <link rel="alternate" href="at://{{ profileView.Did }}/app.bsky.actor.profile/self" /> {% endif -%} {%- endblock %} |