forked from AkkomaGang/akkoma
Only update follower/following stats for actor types of users and bots.
This commit is contained in:
parent
095635453a
commit
370e313e2d
1 changed files with 7 additions and 2 deletions
|
@ -1532,9 +1532,14 @@ defp normalize_counter(_), do: 0
|
||||||
|
|
||||||
defp maybe_update_follow_information(data) do
|
defp maybe_update_follow_information(data) do
|
||||||
with {:enabled, true} <- {:enabled, Config.get([:instance, :external_user_synchronization])},
|
with {:enabled, true} <- {:enabled, Config.get([:instance, :external_user_synchronization])},
|
||||||
{:ok, info} <- fetch_follow_information_for_user(data) do
|
{:ok, info} <- fetch_follow_information_for_user(data),
|
||||||
|
{:ok, actor_type} <- Map.fetch(data, :actor_type) do
|
||||||
info = Map.merge(data[:info] || %{}, info)
|
info = Map.merge(data[:info] || %{}, info)
|
||||||
Map.put(data, :info, info)
|
|
||||||
|
cond do
|
||||||
|
actor_type in ["Person", "Service"] -> Map.put(data, :info, info)
|
||||||
|
true -> data
|
||||||
|
end
|
||||||
else
|
else
|
||||||
{:enabled, false} ->
|
{:enabled, false} ->
|
||||||
data
|
data
|
||||||
|
|
Loading…
Reference in a new issue