logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 6dac2ac71a0005419d1440b5e5daeab3aaabf889
parent f687befb93a9ad2c3dc61f47bdbb717cb1421ad5
Author: Mark Felder <feld@FreeBSD.org>
Date:   Mon, 14 Dec 2020 13:27:42 -0600

Minor refactoring of the logic for hiding followers/following counts.

Field is not nullable anymore, and this is more readable.

Diffstat:

Mlib/pleroma/web/mastodon_api/views/account_view.ex16++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/lib/pleroma/web/mastodon_api/views/account_view.ex b/lib/pleroma/web/mastodon_api/views/account_view.ex @@ -187,18 +187,14 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do header_static = User.banner_url(user) |> MediaProxy.preview_url(static: true) following_count = - if !user.hide_follows_count or !user.hide_follows or opts[:for] == user do - user.following_count || 0 - else - 0 - end + if !user.hide_follows_count or !user.hide_follows or opts[:for] == user, + do: user.following_count, + else: 0 followers_count = - if !user.hide_followers_count or !user.hide_followers or opts[:for] == user do - user.follower_count || 0 - else - 0 - end + if !user.hide_followers_count or !user.hide_followers or opts[:for] == user, + do: user.follower_count, + else: 0 bot = user.actor_type == "Service"