From 01009cf521e4fe8cb94f25beed48cd6e550a5b4a Mon Sep 17 00:00:00 2001 From: Al Lansley Date: Thu, 15 Aug 2024 08:37:19 +1000 Subject: [PATCH] Changed allowed emoji reactions per minute from 5 (which I used for testing) to 20 (production) --- .../securesms/conversation/v2/ConversationActivityV2.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationActivityV2.kt b/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationActivityV2.kt index 0ac830aae5..d0bec0b710 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationActivityV2.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/conversation/v2/ConversationActivityV2.kt @@ -293,7 +293,7 @@ class ConversationActivityV2 : PassphraseRequiredActionBarActivity(), InputBarDe // Constants used to enforce the given maximum emoji reactions allowed per minute (emoji reactions // that occur above this limit will result in a "Slow down" toast rather than adding the reaction). - private val EMOJI_REACTIONS_ALLOWED_PER_MINUTE = 5 + private val EMOJI_REACTIONS_ALLOWED_PER_MINUTE = 20 private val ONE_MINUTE_IN_MILLISECONDS = 1.minutes.inWholeMilliseconds private val isScrolledToBottom: Boolean