Skip to content

Commit

Permalink
Fix double properties in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
guperrot committed Oct 9, 2018
1 parent fffd360 commit 9264f93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void set(EventProperties eventProperties) {
break;
case NUMBER_DOUBLE: {
String stringValue = mEditNumberDouble.getText().toString();
if (stringValue.isEmpty()) {
if (!stringValue.isEmpty()) {
Double value = Double.parseDouble(stringValue);
eventProperties.set(key, value);
} else {
Expand Down

0 comments on commit 9264f93

Please sign in to comment.