diff options
author | Thog <thog92@hotmail.fr> | 2017-11-19 02:22:07 +0100 |
---|---|---|
committer | Thog <thog92@hotmail.fr> | 2017-11-19 02:22:07 +0100 |
commit | 59770c3f5c9a038dbde6b2e1cd1551a7b8f1672b (patch) | |
tree | 178c9f13d02a3a168e1755f8dcbcde0d429315f4 /lib/pleroma/web/xml/xml.ex | |
parent | ed3403ad8be255480d7e41f899d74fe9e5ef3f84 (diff) | |
download | pleroma-59770c3f5c9a038dbde6b2e1cd1551a7b8f1672b.tar.gz |
Fix all compilation warnings
Diffstat (limited to 'lib/pleroma/web/xml/xml.ex')
-rw-r--r-- | lib/pleroma/web/xml/xml.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/xml/xml.ex b/lib/pleroma/web/xml/xml.ex index 63580c1f8..026672ad1 100644 --- a/lib/pleroma/web/xml/xml.ex +++ b/lib/pleroma/web/xml/xml.ex @@ -1,7 +1,7 @@ defmodule Pleroma.Web.XML do require Logger - def string_from_xpath(xpath, :error), do: nil + def string_from_xpath(_, :error), do: nil def string_from_xpath(xpath, doc) do {:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc) @@ -20,7 +20,7 @@ defmodule Pleroma.Web.XML do doc catch - :exit, error -> + :exit, _error -> Logger.debug("Couldn't parse xml: #{inspect(text)}") :error end |