We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new URLPattern({ pathname: '/:a.' })
Running the reproduction case in Chrome yields:
URLPattern { hash: "*" hostname: "*" password: "*" pathname: "/:a." port: "*" protocol: "*" search: "*" username: "*" }
This happens because of an .unwrap() in our rust-urlpattern crate: https://github.com/denoland/rust-urlpattern/blob/fdb0bbb45613b346cb1bfef57c16fc8af97fa1ff/src/component.rs#L195
.unwrap()
rust-urlpattern
The text was updated successfully, but these errors were encountered:
Possibly an issue in the spec: whatwg/urlpattern#156
Sorry, something went wrong.
Quickfixed by denoland/rust-urlpattern#26, available in https://crates.io/crates/urlpattern/0.1.4
We are using urlpattern @ 0.1.5 so this issue can be now closed.
urlpattern
crowlKats
No branches or pull requests
Minimal reproduction
Expected behaviour
Running the reproduction case in Chrome yields:
Cause
This happens because of an
.unwrap()
in ourrust-urlpattern
crate: https://github.com/denoland/rust-urlpattern/blob/fdb0bbb45613b346cb1bfef57c16fc8af97fa1ff/src/component.rs#L195The text was updated successfully, but these errors were encountered: