Fix tag parsing for actors

This commit is contained in:
Thomas Sileo 2022-09-19 19:33:44 +02:00
parent e19c623c71
commit 3305d489ec
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class Actor:
@property
def tags(self) -> list[ap.RawObject]:
return self.ap_actor.get("tag", [])
return ap.as_list(self.ap_actor.get("tag", []))
@property
def followers_collection_id(self) -> str | None: