Carpet

Carpet

2M Downloads

/carpet fillLimit upper bound is exclusive instead of inclusive

James103 opened this issue ยท 0 comments

commented

The following line of code currently proves that the fill limit must be between 1 inclusive and 20,000,000 exclusive, even though the error message implies that the upper bound is inclusive.

return (newValue>0 && newValue < 20000000) ? newValue : null;