Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
MatkovIvan committed Oct 5, 2018
1 parent f44adbd commit d80e8d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private boolean isValidNumberValue(String key, Number value) {
}
double doubleValue = value.doubleValue();
if (Double.isInfinite(doubleValue) || Double.isNaN(doubleValue)) {
AppCenterLog.error(AppCenter.LOG_TAG, "Custom property \""+ key + "\" value is not a valid number.");
AppCenterLog.error(AppCenter.LOG_TAG, "Custom property \""+ key + "\" value cannot be NaN or infinite.");
return false;
}
return true;
Expand Down

0 comments on commit d80e8d3

Please sign in to comment.