Fix tag parsing for actors
This commit is contained in:
parent
e19c623c71
commit
3305d489ec
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class Actor:
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def tags(self) -> list[ap.RawObject]:
|
def tags(self) -> list[ap.RawObject]:
|
||||||
return self.ap_actor.get("tag", [])
|
return ap.as_list(self.ap_actor.get("tag", []))
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def followers_collection_id(self) -> str | None:
|
def followers_collection_id(self) -> str | None:
|
||||||
|
|
Loading…
Reference in a new issue