Do not update unread count for story messages
This commit is contained in:
parent
565425c8b6
commit
778f3721a6
1 changed files with 3 additions and 1 deletions
|
@ -2821,7 +2821,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
|
|||
window.Whisper.events.trigger('incrementProgress');
|
||||
confirm();
|
||||
|
||||
conversation.queueJob('updateUnread', () => conversation.updateUnread());
|
||||
if (!isStory(this.attributes)) {
|
||||
conversation.queueJob('updateUnread', () => conversation.updateUnread());
|
||||
}
|
||||
}
|
||||
|
||||
// This function is called twice - once from handleDataMessage, and then again from
|
||||
|
|
Loading…
Reference in a new issue