Run mix format

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-08-22 12:09:01 +02:00
parent d5bdd55b5d
commit 643f373514
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE

View file

@ -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],