Handle mastodon conversation ids.
This commit is contained in:
parent
485cc0bc6a
commit
1b1f861bad
3 changed files with 41 additions and 1 deletions
|
|
@ -24,7 +24,10 @@ defmodule Pleroma.Web.OStatus.NoteHandler do
|
|||
3. A newly generated context id.
|
||||
"""
|
||||
def get_context(entry, inReplyTo) do
|
||||
context = (XML.string_from_xpath("//ostatus:conversation[1]", entry) || "") |> String.trim
|
||||
context = (
|
||||
XML.string_from_xpath("//ostatus:conversation[1]", entry)
|
||||
|| XML.string_from_xpath("//ostatus:conversation[1]/@ref", entry)
|
||||
|| "") |> String.trim
|
||||
|
||||
with %{data: %{"context" => context}} <- Object.get_cached_by_ap_id(inReplyTo) do
|
||||
context
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue