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 c0b4ecc commit 5a6eeb1Copy full SHA for 5a6eeb1
crates/next-core/src/next_route_matcher/path_regex.rs
@@ -19,6 +19,7 @@ pub struct PathRegex {
19
20
impl PartialEq for PathRegex {
21
fn eq(&self, other: &Self) -> bool {
22
+ // Context: https://github.com/rust-lang/regex/issues/313#issuecomment-269898900
23
self.regex.as_str() == other.regex.as_str() && self.named_params == other.named_params
24
}
25
0 commit comments