-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to see a timestamp when the message was received / read #671
Comments
was the feature added or do you want me to add this feature? if possible please give details of what is needed to add. |
It's not a simple feature. Here is a high-level outline. Tinode client apps consider a message read when the message appears on the screen for ~500ms. When the message with The server records that user In order to implement this feature correctly you have to store the timestamp of each read receipt for each user. I believe it requires a separate DB table, something like It's possible to implement this feature half-way by storing the timestamp of the last read receipt for each user and saving the corresponding timestamp on the client. This would give an approximation of when the message was read. Overall the feature looks very heavy for the marginal value it provides. |
Is your feature request related to a problem? Please describe.
It maybe useful to see when the message was delivered to each recipient and when it was read.
Describe the solution you'd like
Add message delivery info screen.
The text was updated successfully, but these errors were encountered: