Skip to content

Commit

Permalink
Merge pull request #1188 from dm3-org/edit-msg-indicator-fix
Browse files Browse the repository at this point in the history
fixed edit msg indicator issue
  • Loading branch information
AlexNi245 authored Sep 25, 2024
2 parents 40746b4 + 1f8bd6a commit 0af8fff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export class ReceiptDispatcher {
//We only want to acknowledge messages from type NEW or REPLY. Every other message type can be neglected for now
const shouldAcknowledgeMessage =
messageModel.envelop.message.metadata.type === 'NEW' ||
messageModel.envelop.message.metadata.type === 'EDIT' ||
messageModel.envelop.message.metadata.type === 'REPLY';
//Check if the selected contact is the sender of the message.
// If that is the case we've to acknowledge the message and send a READ_OPENED acknowledgement to the sender
Expand Down
2 changes: 1 addition & 1 deletion packages/messenger-widget/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '1.6.0';
export const version = '1.6.1';

0 comments on commit 0af8fff

Please sign in to comment.