XML: handle erlang errors too

This commit is contained in:
William Pitcock 2018-06-01 17:55:25 +00:00
parent dca1d6d162
commit aaa81d3540
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,10 @@ defmodule Pleroma.Web.XML do
:exit, _error ->
Logger.debug("Couldn't parse XML: #{inspect(text)}")
:error
rescue
e ->
Logger.debug("Couldn't parse XML: #{inspect(text)}")
:error
end
end
end