Skip to content
New issue

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

Fixed panic when Router#Find fails on Param paths #1659

Merged

Commits on Oct 25, 2020

  1. Fixed panic when Router#Find fails on Param paths

    Fixed panic when Router#Find fails to find a route that could match a
    Param route that only have children routes and no root route.
    e.g
    /create
    /:id/edit
    /:id/active
    
    Finding /creates results in panic because the router tree node that
    belongs to the param route :id don't have pnames on it. The childrens of
    :id (:id/edit and :id/active) have the pnames properly set, but those
    are not processed because /creates don't match on those paths.
    pafuent committed Oct 25, 2020
    Configuration menu
    Copy the full SHA
    85e521f View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2020

  1. Configuration menu
    Copy the full SHA
    5cadf45 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2020

  1. Configuration menu
    Copy the full SHA
    f32e33a View commit details
    Browse the repository at this point in the history
  2. Reverting changes on go.sum

    pafuent committed Dec 10, 2020
    Configuration menu
    Copy the full SHA
    c171855 View commit details
    Browse the repository at this point in the history