diff --git a/ts/state/ducks/composer.ts b/ts/state/ducks/composer.ts index e18435cad556..0062a3ce6138 100644 --- a/ts/state/ducks/composer.ts +++ b/ts/state/ducks/composer.ts @@ -1064,6 +1064,11 @@ function processAttachments({ throw new Error('processAttachments: Unable to find conv'); } + const draftEditMessage = conversation.get('draftEditMessage'); + if (draftEditMessage) { + return; + } + const state = getState(); const isRecording = state.audioRecorder.recordingState === RecordingState.Recording;