Fixes remote_id on Update activities
This commit is contained in:
parent
2e4aff90a3
commit
39307ce1cd
2 changed files with 50 additions and 1 deletions
|
@ -130,7 +130,7 @@ class ActivitypubMixin:
|
|||
|
||||
def to_update_activity(self, user):
|
||||
''' wrapper for Updates to an activity '''
|
||||
activity_id = '%s#update/%s' % (user.remote_id, uuid4())
|
||||
activity_id = '%s#update/%s' % (self.remote_id, uuid4())
|
||||
return activitypub.Update(
|
||||
id=activity_id,
|
||||
actor=user.remote_id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue