diff --git a/docs/account.md b/docs/account.md index 34488ef..c879b3a 100644 --- a/docs/account.md +++ b/docs/account.md @@ -1771,7 +1771,6 @@ Returns `list[dict]` where each element represents a community. | `verified` | `bool` | Whether the community is verified. | | `tags` | `list[str]` | Tags associated with the community. | | `is_member` | `bool` | Whether the account is currently a member of the community. | -| `joined` | `bool` | Whether the account has joined the community. | | `joined_timestamp` | `datetime.datetime`
`None` | Timestamp when the account joined the community. `None` when the account has not joined. | | `requested_timestamp` | `datetime.datetime`
`None` | Timestamp when the join request was submitted. `None` when no request was made. | | `encrypted` | `bool` | Whether the community messaging is encrypted. | diff --git a/status_sdk/account.py b/status_sdk/account.py index a1d13d1..8badabc 100644 --- a/status_sdk/account.py +++ b/status_sdk/account.py @@ -490,7 +490,6 @@ def communities(self) -> list[dict]: "verified": community["verified"], "tags": community["tags"], "is_member": community["isMember"], - "joined": community["verified"], "joined_timestamp": to_datetime("joinedAt", community), "requested_timestamp": to_datetime("requestedToJoinAt", community), "encrypted": community["encrypted"],