diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-12-09 11:00:56 +0100 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-12-09 11:00:56 +0100 |
commit | 30e9b22f96f2bf1cd895e993190f40afba159bb6 (patch) | |
tree | 811c64694f98c10f55cdbaeb98ada50209b59580 /lib/xml_builder.ex | |
parent | 6268b7e0eb400c1b5e227a73e6faee0f1e476db4 (diff) | |
parent | d5a13c10ac6a9a5f8dbb1932ffc85260f079a2dc (diff) | |
download | pleroma-30e9b22f96f2bf1cd895e993190f40afba159bb6.tar.gz pleroma-30e9b22f96f2bf1cd895e993190f40afba159bb6.zip |
Merge branch 'develop' into feature/activitypub
Diffstat (limited to 'lib/xml_builder.ex')
-rw-r--r-- | lib/xml_builder.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xml_builder.ex b/lib/xml_builder.ex index c6d144903..52358c437 100644 --- a/lib/xml_builder.ex +++ b/lib/xml_builder.ex @@ -37,6 +37,6 @@ defmodule Pleroma.XmlBuilder do "#{attribute}=\"#{value}\"" end |> Enum.join(" ") - [tag, attributes_string] |> Enum.join(" ") |> String.strip + [tag, attributes_string] |> Enum.join(" ") |> String.trim end end |