diff options
author | lain <lain@soykaf.club> | 2018-04-22 10:01:10 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-04-22 10:01:10 +0200 |
commit | 0574df273c06f8ce5dea10f9978c7dd5bfea558d (patch) | |
tree | c53f5d8978d225ea9f244d998c3b9d0e444e6870 /lib/pleroma/formatter.ex | |
parent | 114ca9e069a0914cc1ad8bf13690818eb132b0bf (diff) | |
download | pleroma-0574df273c06f8ce5dea10f9978c7dd5bfea558d.tar.gz |
Small cleanup.
Diffstat (limited to 'lib/pleroma/formatter.ex')
-rw-r--r-- | lib/pleroma/formatter.ex | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/pleroma/formatter.ex b/lib/pleroma/formatter.ex index a708a275e..456416fbd 100644 --- a/lib/pleroma/formatter.ex +++ b/lib/pleroma/formatter.ex @@ -169,8 +169,11 @@ defmodule Pleroma.Formatter do subs ++ Enum.map(links, fn {uuid, url} -> {:safe, link} = Phoenix.HTML.Link.link(url, to: url) - link = link - |> IO.iodata_to_binary + + link = + link + |> IO.iodata_to_binary() + {uuid, link} end) |