diff --git a/federation/entities/activitypub/models.py b/federation/entities/activitypub/models.py index d11216e..287f29a 100644 --- a/federation/entities/activitypub/models.py +++ b/federation/entities/activitypub/models.py @@ -611,6 +611,7 @@ class Person(Object, base.Profile): self.followers = f'{with_slash(self.id)}followers/' self.following = f'{with_slash(self.id)}following/' self.outbox = f'{with_slash(self.id)}outbox/' + if isinstance(self.to, str): self.to = [self.to] if hasattr(self, 'times'): if self.times.get('updated',0) > self.times.get('created',0):