MatchError at GET /pictures/4 no match of right hand side value: :error

When i am trying to show my image that was uploaded on show I m getting match error.

def show(conn, %{“id” => id}) do
picture = Storage.get_picture!(id)
render(conn, “show.html”, picture: picture)
end

  • Please format your code blocks with triple backticks: ```
  • Please show us the error.
  • Please give more context, your post is not enough for people to help you.
1 Like