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
fix: read receipts should not be removed due to message update (#1808)
**Case:**
- User A sends a message on channel
- User B reads the channel, and we show the read indicator to User A on that message
- Now User A updates the message (or adds a reaction), so updated_at field for message is greater than read timestamp for User B
**Current Implementation on React and RN**
In above case, after step 3, we remove the read receipt, since message was updated after User B read the channel
**Proposed Change**
I think we should keep the read receipt in this case. Read receipt should only be computed based on created_at timestamp of message compared with read timestamp
0 commit comments