stream-chat-angular 5.8.0 → 5.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ import transliterate from '@stream-io/transliterate';
22
22
  import * as i7 from 'angular-mentions';
23
23
  import { MentionModule } from 'angular-mentions';
24
24
 
25
- const version = '5.8.0';
25
+ const version = '5.8.2';
26
26
 
27
27
  /**
28
28
  * The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](../components/NotificationListComponent.mdx) component displays the currently active notifications.
@@ -867,6 +867,9 @@ class ChannelService {
867
867
  if (this.beforeUpdateMessage) {
868
868
  messageToUpdate = yield this.beforeUpdateMessage(messageToUpdate);
869
869
  }
870
+ if (messageToUpdate.readBy) {
871
+ delete messageToUpdate.readBy;
872
+ }
870
873
  if (message.moderation_details) {
871
874
  return this.resendMessage(message);
872
875
  }