logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 643f373514081864814930807432dc0740694c69
parent: d5bdd55b5d70b44bfd409f5f6942dea882e1c823
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed, 22 Aug 2018 12:09:01 +0200

Run mix format

Diffstat:

Mlib/pleroma/web/twitter_api/views/user_view.ex3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/pleroma/web/twitter_api/views/user_view.ex b/lib/pleroma/web/twitter_api/views/user_view.ex @@ -38,7 +38,8 @@ defmodule Pleroma.Web.TwitterAPI.UserView do data = %{ "created_at" => user.inserted_at |> Utils.format_naive_asctime(), - "description" => HtmlSanitizeEx.strip_tags((user.bio || "") |> String.replace("<br>", "\n")), + "description" => + HtmlSanitizeEx.strip_tags((user.bio || "") |> String.replace("<br>", "\n")), "description_html" => HtmlSanitizeEx.basic_html(user.bio), "favourites_count" => 0, "followers_count" => user_info[:follower_count],