Use empty context id if we get none

Thanks mastodon.
This commit is contained in:
Roger Braun 2017-05-01 20:38:01 +02:00
parent aa20941416
commit 8ae13d94dc

View file

@ -45,7 +45,7 @@ defmodule Pleroma.Web.OStatus do
uri = string_from_xpath("/entry/author/uri[1]", entry) || string_from_xpath("/feed/author/uri[1]", doc)
{:ok, actor} = find_or_make_user(uri)
context = string_from_xpath("/entry/ostatus:conversation[1]", entry) |> String.trim
context = (string_from_xpath("/entry/ostatus:conversation[1]", entry) || "") |> String.trim
context = if String.length(context) > 0 do
context
else