mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 07:10:59 +00:00
Don't use other server URIs in our IDs (Fixes #323)
This commit is contained in:
parent
c3bf7563b4
commit
e6e64f1000
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ class Follow(StatorModel):
|
||||||
"""
|
"""
|
||||||
return {
|
return {
|
||||||
"type": "Accept",
|
"type": "Accept",
|
||||||
"id": f"{self.target.actor_uri}#accept/{self.id}",
|
"id": self.uri + "#accept",
|
||||||
"actor": self.target.actor_uri,
|
"actor": self.target.actor_uri,
|
||||||
"object": self.to_ap(),
|
"object": self.to_ap(),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue