Merge branch 'bugfix/233-handle-missing-StatusView' into 'develop'
[akkoma] / lib / pleroma / web / mastodon_api / mastodon_api_controller.ex
index 77146d780b32934eadc30ca3e2dbcbcf9a2a4aee..751698ca87f3e1b213caa8e65a823555fd7c9a4d 100644 (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