fix Activity.get_by_id

This commit is contained in:
Maksim Pechnikov 2019-09-13 07:12:34 +03:00
commit d8a178274b
2 changed files with 20 additions and 4 deletions

View file

@ -2864,6 +2864,15 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
assert response == %{}
end
test "returns empty object when id isn't FlakeID", %{conn: conn} do
response =
conn
|> get("/api/v1/statuses/3ebbadd1-eb14-4e20-8118/card")
|> json_response(200)
assert response == %{}
end
end
test "bookmarks" do