MastodonAPI search: return only create activities.

stable
lain 7 years ago
parent f5943f4a59
commit 303289d7da

@ -494,6 +494,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
if Regex.match?(~r/https?:/, query) do if Regex.match?(~r/https?:/, query) do
with {:ok, activities} <- OStatus.fetch_activity_from_url(query) do with {:ok, activities} <- OStatus.fetch_activity_from_url(query) do
activities activities
|> Enum.filter(fn
%{data: %{"type" => "Create"}} -> true
_ -> false
end)
else else
_e -> [] _e -> []
end end

Loading…
Cancel
Save