User: Never return nil for user follower counts.

This commit is contained in:
lain 2019-11-27 14:13:36 +01:00
commit f36724efb1
2 changed files with 10 additions and 2 deletions

View file

@ -178,8 +178,8 @@ defmodule Pleroma.User do
def ap_following(%User{} = user), do: "#{ap_id(user)}/following"
def user_info(%User{} = user, args \\ %{}) do
following_count = Map.get(args, :following_count, user.following_count)
follower_count = Map.get(args, :follower_count, user.follower_count)
following_count = Map.get(args, :following_count, user.following_count) || 0
follower_count = Map.get(args, :follower_count, user.follower_count) || 0
%{
note_count: user.note_count,