You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2026. It is now read-only.
hash is the first 10 characters of the SHA-256 of the sorted pin ID list. Compared against the current pin list on sync to detect if anything changed without fetching individual events. Hash detects changes, count shows "+N new", and last_seen_id highlights new pins inside the panel (since pin order is guaranteed by spec). If last_seen_id was unpinned, fall back to hash comparison.
Describe the problem
There's currently no way to tell if there are new pinned messages you haven't seen. We should add an unread badge to the pin button.
Describe the solution you'd like
Store a small room account data event with:
{ "hash": "a3f9b2c1d4", "count": 7, "last_seen_id": "$abc123" }hashis the first 10 characters of the SHA-256 of the sorted pin ID list. Compared against the current pin list on sync to detect if anything changed without fetching individual events. Hash detects changes, count shows "+N new", andlast_seen_idhighlights new pins inside the panel (since pin order is guaranteed by spec). Iflast_seen_idwas unpinned, fall back to hash comparison.Alternatives considered
Stopgap until MSC4238 is merged.
Additional context
No response