We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e5fe27 commit ca86b49Copy full SHA for ca86b49
changelog.d/CaptureAll
@@ -0,0 +1,14 @@
1
+synopsis: Bugfix - CaptureAll produces [""] for empty paths due to trailing slash.
2
+prs: #1516
3
+issues: #1243
4
+
5
+description: {
6
7
+CaptureAll resulted in `[""]` for empty paths due to trailing slash. Similar
8
+oddities occurred around these edge cases like `"/"` resulted in `[]` correctly,
9
+but `"//"` resulted in `["", ""]`. This patch simply eliminates the first `""`
10
+in the pathinfo list as taken from the wai response. This might break user
11
+code that relies on personal shims to solve the problem, however simply removing their
12
+workarounds should fix their code as the behavior is now sane.
13
14
+}
0 commit comments