formatting
authorWilliam Pitcock <nenolod@dereferenced.org>
Mon, 10 Sep 2018 00:28:40 +0000 (00:28 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Mon, 10 Sep 2018 00:28:40 +0000 (00:28 +0000)
lib/pleroma/gopher/server.ex
lib/pleroma/web/twitter_api/views/user_view.ex

index 1ad27ef27f72b739a644b11368716658a6a8c1f9..d34037f4f69f7c05f47a098d06b057e248f7e65e 100644 (file)
@@ -79,11 +79,7 @@ defmodule Pleroma.Gopher.Server.ProtocolHandler do
       link("Post ##{activity.id} by #{user.nickname}", "/notices/#{activity.id}") <>
         info("#{like_count} likes, #{announcement_count} repeats") <>
         "i\tfake\t(NULL)\t0\r\n" <>
-        info(
-          HTML.strip_tags(
-            String.replace(activity.data["object"]["content"], "<br>", "\r")
-          )
-        )
+        info(HTML.strip_tags(String.replace(activity.data["object"]["content"], "<br>", "\r")))
     end)
     |> Enum.join("i\tfake\t(NULL)\t0\r\n")
   end
index d67ef5f747231ad552d9d3dc16d4e13e67385413..f2641047f3a860bfdbef831adf1bce535228242a 100644 (file)
@@ -39,8 +39,7 @@ defmodule Pleroma.Web.TwitterAPI.UserView do
 
     data = %{
       "created_at" => user.inserted_at |> Utils.format_naive_asctime(),
-      "description" =>
-        HTML.strip_tags((user.bio || "") |> String.replace("<br>", "\n")),
+      "description" => HTML.strip_tags((user.bio || "") |> String.replace("<br>", "\n")),
       "description_html" => HTML.filter_tags(user.bio),
       "favourites_count" => 0,
       "followers_count" => user_info[:follower_count],