Phoenix controller action that allows passthrough on nil

Hi,

In a controller, you need to send a response back to the client. For example, your show.html template, a 404, a redirect, etc.

If I understand correctly you would want to use a redirect: redirect(conn, to: "/your-other-controller") instead of just conn.

I hope it fixes your issue.