1
0
Fork 0

Fixes remote_id on Update activities

This commit is contained in:
Mouse Reeve 2020-12-04 11:46:16 -08:00
parent 2e4aff90a3
commit 39307ce1cd
2 changed files with 50 additions and 1 deletions

View file

@ -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,