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 has been archived by the owner on Apr 26, 2024. It is now read-only.
Riot as well as other clients uses the @property (nonatomic, readonly) NSUInteger notificationCount; to determine how many messages/events have occurred since the last time that the user opened a given room.
To mute a room one would normally remove all push notifications on that particular room. This works ok, but after a room has been muted, by removing push notifications in that room, the notification counter will always mark a 0.
A normal use case is that of a user wanting to mute a room, but still be able to see how many messages he/she hasn't read, however, the current mechanism do not make it possible.
Could we keep on sending the correct notification count on the room sync response, even when the Push Notifications have been disabled?
The text was updated successfully, but these errors were encountered:
Riot as well as other clients uses the
@property (nonatomic, readonly) NSUInteger notificationCount;
to determine how many messages/events have occurred since the last time that the user opened a given room.To mute a room one would normally remove all push notifications on that particular room. This works ok, but after a room has been muted, by removing push notifications in that room, the notification counter will always mark a 0.
A normal use case is that of a user wanting to mute a room, but still be able to see how many messages he/she hasn't read, however, the current mechanism do not make it possible.
Could we keep on sending the correct notification count on the room sync response, even when the Push Notifications have been disabled?
The text was updated successfully, but these errors were encountered: