Chats: Limit Unread Messages Display #105
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In the current implementation, the number of unread messages in a chat can go as far as
Integer.MAX_VALUE
, which is by far greater than intended. A better solution would be to limit the display to i.e.99+
(and to expand the surrounding circle in that case).