You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 20, 2024. It is now read-only.
The matching of params when creating the regex is breaking since params extracted from the route will have format [":param1", ":param2"] while the ones added wont have the : since they are likely used as:
The matching of params when creating the regex is breaking since params extracted from the route will have format
[":param1", ":param2"]while the ones added wont have the:since they are likely used as:Even if you explicitly name the params
the pattern-replace will fail in the loop a few lines down since it then tries to match
::param1which doesn't exist in the route