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
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;