forked from AkkomaGang/akkoma
Patch to replace newlines with <br> tags in bio
This commit is contained in:
parent
62a2287bba
commit
52ee91efce
1 changed files with 2 additions and 1 deletions
|
@ -347,7 +347,8 @@ def empty_array(conn, _params) 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
|
||||
|
|
Loading…
Reference in a new issue