MastodonAPI search: return only create activities.
This commit is contained in:
parent
f5943f4a59
commit
303289d7da
@ -494,6 +494,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
||||
if Regex.match?(~r/https?:/, query) do
|
||||
with {:ok, activities} <- OStatus.fetch_activity_from_url(query) do
|
||||
activities
|
||||
|> Enum.filter(fn
|
||||
%{data: %{"type" => "Create"}} -> true
|
||||
_ -> false
|
||||
end)
|
||||
else
|
||||
_e -> []
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user