Don't use other server URIs in our IDs (Fixes #323)

pull/654/head
Andrew Godwin 2023-11-12 10:20:45 -07:00
rodzic c3bf7563b4
commit e6e64f1000
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -275,7 +275,7 @@ class Follow(StatorModel):
"""
return {
"type": "Accept",
"id": f"{self.target.actor_uri}#accept/{self.id}",
"id": self.uri + "#accept",
"actor": self.target.actor_uri,
"object": self.to_ap(),
}