Fix crash in reactions overlay OnTouch.

master
Alex Hart 2020-02-04 16:59:21 -04:00 committed by Greyson Parrelli
parent 2754b397d5
commit 73dedd79d2
1 changed files with 1 additions and 1 deletions

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