Changed to support \r\n and \n

This commit is contained in:
Wim Vanderbauwhede 2018-04-24 13:28:55 +01:00
parent 52ee91efce
commit 7517155544
1 changed files with 1 additions and 1 deletions

View File

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