Fix some of that webfinger breakage

pull/246/head
Andrew Godwin 2022-12-22 10:43:53 -08:00
rodzic 01e944176c
commit c890382b30
1 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -414,7 +414,7 @@ class Identity(StatorModel):
### ActivityPub (outbound) ### ### ActivityPub (outbound) ###
def to_webfinger(self): def to_webfinger(self):
aliases = self.all_absolute_profile_uris() aliases = [self.absolute_profile_uri()]
actor_links = [] actor_links = []
@ -432,8 +432,11 @@ class Identity(StatorModel):
# Exposing the activity+json will allow migrating off server # Exposing the activity+json will allow migrating off server
actor_links.extend( actor_links.extend(
[ [
{"rel": "self", "type": "application/activity+json", "href": alias_uri} {
for alias_uri in aliases "rel": "self",
"type": "application/activity+json",
"href": self.actor_uri,
}
] ]
) )