Fix Accept object id for follow activity for Misskey and Firefish (#632)
This commit is contained in:
parent
679f0def99
commit
faa181807c
|
@ -230,7 +230,7 @@ class Follow(StatorModel):
|
||||||
"""
|
"""
|
||||||
return {
|
return {
|
||||||
"type": "Accept",
|
"type": "Accept",
|
||||||
"id": self.uri + "#accept",
|
"id": f"{self.target.actor_uri}#accept/{self.id}",
|
||||||
"actor": self.target.actor_uri,
|
"actor": self.target.actor_uri,
|
||||||
"object": self.to_ap(),
|
"object": self.to_ap(),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue