mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-09 11:48:35 +00:00
Fix crash in reactions overlay OnTouch.
This commit is contained in:
parent
2754b397d5
commit
73dedd79d2
@ -539,7 +539,7 @@ public final class ConversationReactionOverlay extends RelativeLayout {
|
||||
}
|
||||
|
||||
private void update(float min, float max) {
|
||||
Preconditions.checkArgument(min < max, "Min must be less than max");
|
||||
Preconditions.checkArgument(min <= max, "Min must be less than max");
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user