-
-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changelog for PR #1516 concerning CaptureAll
- Loading branch information
1 parent
2e5fe27
commit ca86b49
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
synopsis: Bugfix - CaptureAll produces [""] for empty paths due to trailing slash. | ||
prs: #1516 | ||
issues: #1243 | ||
|
||
description: { | ||
|
||
CaptureAll resulted in `[""]` for empty paths due to trailing slash. Similar | ||
oddities occurred around these edge cases like `"/"` resulted in `[]` correctly, | ||
but `"//"` resulted in `["", ""]`. This patch simply eliminates the first `""` | ||
in the pathinfo list as taken from the wai response. This might break user | ||
code that relies on personal shims to solve the problem, however simply removing their | ||
workarounds should fix their code as the behavior is now sane. | ||
|
||
} |