Open travislaynewilson opened 7 years ago
The url variable was falsey rejecting valid routes with zero-length (aka. empty strings). Checking for null instead of relying on falsey checking fixes the issue.
url
null
Thanks! Could you please add a unit test for this case?
The
url
variable was falsey rejecting valid routes with zero-length (aka. empty strings). Checking fornull
instead of relying on falsey checking fixes the issue.