Fix drafts not working when typing indicators are disabled.

This commit is contained in:
Cody Henthorne 2022-08-10 16:45:43 -04:00
parent 7f47e50674
commit afff792ecc

View file

@ -838,9 +838,7 @@ public class ConversationParentFragment extends Fragment
}); });
} }
if (TextSecurePreferences.isTypingIndicatorsEnabled(ApplicationDependencies.getApplication())) { composeText.addTextChangedListener(typingTextWatcher);
composeText.addTextChangedListener(typingTextWatcher);
}
composeText.setSelection(composeText.length(), composeText.length()); composeText.setSelection(composeText.length(), composeText.length());
} }
}); });