ActivityPub: Mark fetch_and_prepare_user_from_ap_id/1 as private

This commit is contained in:
Haelwenn (lanodan) Monnier 2023-05-05 11:07:18 +02:00
parent 8181be89a2
commit 9dfa1c4be0

View file

@ -1668,7 +1668,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
end
end
def fetch_and_prepare_user_from_ap_id(ap_id, additional \\ []) do
defp fetch_and_prepare_user_from_ap_id(ap_id, additional) do
with {:ok, data} <- Fetcher.fetch_and_contain_remote_object_from_id(ap_id),
{:ok, data} <- user_data_from_user_object(data, additional) do
{:ok, maybe_update_follow_information(data)}