forked from AkkomaGang/akkoma
Use empty context id if we get none
Thanks mastodon.
This commit is contained in:
parent
aa20941416
commit
8ae13d94dc
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ def handle_note(entry, doc \\ nil) do
|
||||||
uri = string_from_xpath("/entry/author/uri[1]", entry) || string_from_xpath("/feed/author/uri[1]", doc)
|
uri = string_from_xpath("/entry/author/uri[1]", entry) || string_from_xpath("/feed/author/uri[1]", doc)
|
||||||
{:ok, actor} = find_or_make_user(uri)
|
{: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 = if String.length(context) > 0 do
|
||||||
context
|
context
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue