Various fixes for message forwarding

This commit is contained in:
Josh Perez 2021-04-28 13:44:48 -07:00 committed by GitHub
parent 3face767aa
commit 353becffac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 222 additions and 44 deletions

View file

@ -3324,6 +3324,10 @@ export class ConversationModel extends window.Backbone.Model<
mentions?: BodyRangesType,
{ dontClearDraft = false } = {}
): void {
if (this.isGroupV1AndDisabled()) {
return;
}
this.clearTypingTimers();
const { clearUnreadMetrics } = window.reduxActions.conversations;