Fix crash in reactions overlay OnTouch.

This commit is contained in:
Alex Hart 2020-02-04 16:59:21 -04:00 committed by Greyson Parrelli
parent 2754b397d5
commit 73dedd79d2

View file

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