Patch to replace newlines with <br> tags in bio

This commit is contained in:
Wim Vanderbauwhede 2018-04-24 13:20:17 +01:00
parent 62a2287bba
commit 52ee91efce
1 changed files with 2 additions and 1 deletions

View File

@ -347,7 +347,8 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
def update_profile(%{assigns: %{user: user}} = conn, params) do
params =
if bio = params["description"] do
Map.put(params, "bio", bio)
bio_brs = Regex.replace(~r/\r\n/,bio,"<br>")
Map.put(params, "bio", bio_brs)
else
params
end