aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/xml/xml.ex
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2018-04-07 16:41:47 +0200
committerlain <lain@soykaf.club>2018-04-07 16:41:47 +0200
commit8f9bcc4ab0b16efa9168f49f6e2cc14bc424d398 (patch)
tree220581b9c5d2dd92285943c2b948789b9bf4699c /lib/pleroma/web/xml/xml.ex
parent70bcdf32bdf98c02d9f44c07cbcf74d4c59ed299 (diff)
parentd41bfd1d47587c95450c5953b9fb4374008ecb8c (diff)
downloadpleroma-8f9bcc4ab0b16efa9168f49f6e2cc14bc424d398.tar.gz
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into develop
Diffstat (limited to 'lib/pleroma/web/xml/xml.ex')
-rw-r--r--lib/pleroma/web/xml/xml.ex18
1 files changed, 12 insertions, 6 deletions
diff --git a/lib/pleroma/web/xml/xml.ex b/lib/pleroma/web/xml/xml.ex
index b85712d65..8b609f695 100644
--- a/lib/pleroma/web/xml/xml.ex
+++ b/lib/pleroma/web/xml/xml.ex
@@ -4,14 +4,20 @@ defmodule Pleroma.Web.XML do
def string_from_xpath(_, :error), do: nil
def string_from_xpath(xpath, doc) do
- {:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc)
+ try do
+ {:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc)
- res =
- res
- |> to_string
- |> String.trim()
+ res =
+ res
+ |> to_string
+ |> String.trim()
- if res == "", do: nil, else: res
+ if res == "", do: nil, else: res
+ catch
+ e ->
+ Logger.debug("Couldn't find xpath #{xpath} in XML doc")
+ nil
+ end
end
def parse_document(text) do