xml builder: properly escape quotes

This commit is contained in:
William Pitcock 2019-05-12 19:04:37 +00:00
parent 582bd9d170
commit 80759f012e
1 changed files with 1 additions and 0 deletions

View File

@ -35,6 +35,7 @@ defmodule Pleroma.XmlBuilder do
defp make_open_tag(tag, attributes) do
attributes_string =
for {attribute, value} <- attributes do
value = String.replace(value, "\"", "&quot;")
"#{attribute}=\"#{value}\""
end
|> Enum.join(" ")