forked from AkkomaGang/akkoma
Do recursive fetching in-band for now.
This is to prevent conversation id problems.
This commit is contained in:
parent
04f6ece99e
commit
7e65cad9fe
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ def handle_note(entry, doc \\ nil) do
|
||||||
if !Object.get_cached_by_ap_id(inReplyTo) do
|
if !Object.get_cached_by_ap_id(inReplyTo) do
|
||||||
inReplyToHref = string_from_xpath("//thr:in-reply-to[1]/@href", entry)
|
inReplyToHref = string_from_xpath("//thr:in-reply-to[1]/@href", entry)
|
||||||
if inReplyToHref do
|
if inReplyToHref do
|
||||||
Task.start(fn -> fetch_activity_from_html_url(inReplyToHref) end)
|
fetch_activity_from_html_url(inReplyToHref)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue