Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/account.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`<br>`None` | Timestamp when the account joined the community. `None` when the account has not joined. |
| `requested_timestamp` | `datetime.datetime`<br>`None` | Timestamp when the join request was submitted. `None` when no request was made. |
| `encrypted` | `bool` | Whether the community messaging is encrypted. |
Expand Down
1 change: 0 additions & 1 deletion status_sdk/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down