Browse Source
The regex {(.*?)} captures 'param:path' instead of 'param' when path
converters are used. This causes implicit path params to be incorrectly
treated as query params.
Fix: use {([^:}]+)} to stop at the colon separator.
Fixes #14883
pull/15305/head
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue