Ensure messageCache is updated when properties are unset

Co-authored-by: trevor-signal <131492920+trevor-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2023-10-19 10:48:29 -07:00 committed by GitHub
parent 6bb68d7c03
commit ddd4118c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -382,7 +382,7 @@ const setReactions = (
if (reactions.length) {
message.set('reactions', reactions);
} else {
message.unset('reactions');
message.set('reactions', undefined);
}
};

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;

View File

@ -89,7 +89,7 @@ async function cleanupStoryReplies(
reply,
'cleanupStoryReplies/1:1'
);
model.unset('storyReplyContext');
model.set('storyReplyContext', undefined);
await model.hydrateStoryContext(story, { shouldSave: true });
})
);