Changed allowed emoji reactions per minute from 5 (which I used for testing) to 20 (production)

This commit is contained in:
Al Lansley 2024-08-15 08:37:19 +10:00
parent 9441d1e08d
commit 01009cf521

View File

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