Ensure messageCache is updated when properties are unset

This commit is contained in:
trevor-signal 2023-10-19 13:14:19 -04:00 committed by GitHub
parent 6906e39c87
commit ce276b56c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -491,7 +491,7 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
}
if (this.get('storyReplyContext')) {
this.unset('storyReplyContext');
this.set('storyReplyContext', undefined);
}
await this.hydrateStoryContext(message.attributes, { shouldSave: true });
return;