Fix tag parsing for actors

quote-url-support
Thomas Sileo 2022-09-19 19:33:44 +02:00
rodzic e19c623c71
commit 3305d489ec
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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