[Pleroma.Web.MastodonAPI.MastodonAPIController]: fallback for try_render/4

Better be sure than sorry
This commit is contained in:
Haelwenn (lanodan) Monnier 2018-10-25 06:05:13 +02:00
parent b112112c11
commit b386888a0e
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE

View file

@ -1215,4 +1215,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
res
end
end
def try_render(conn, _, _, _) do
conn
|> put_status(501)
|> json(%{error: "Can't display this activity"})
end
end