Enable reaction sending.

This commit is contained in:
Greyson Parrelli 2020-01-31 12:02:55 -05:00
parent 37f85d6deb
commit 4f921d761d
2 changed files with 2 additions and 3 deletions

View File

@ -995,8 +995,7 @@ public class ConversationFragment extends Fragment
if (actionMode != null) return;
if (FeatureFlags.reactionSending() &&
messageRecord.isSecure() &&
if (messageRecord.isSecure() &&
!messageRecord.isUpdate() &&
((ConversationAdapter) list.getAdapter()).getSelectedItems().isEmpty())
{

View File

@ -74,7 +74,7 @@ public final class Megaphones {
*/
private static Map<Event, MegaphoneSchedule> buildDisplayOrder() {
return new LinkedHashMap<Event, MegaphoneSchedule>() {{
put(Event.REACTIONS, new ForeverSchedule(FeatureFlags.reactionSending()));
put(Event.REACTIONS, new ForeverSchedule(true));
put(Event.PINS_FOR_ALL, new PinsForAllSchedule());
}};
}