diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-05-06 12:15:48 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-05-06 12:15:48 +0200 |
commit | 7e65cad9fe91cf7c0c25e8f307358083b3c8f784 (patch) | |
tree | 147e7c360293e9e33a8a6dbbdca8378d385997ab /lib | |
parent | 04f6ece99ef15d0e0ced330e3945307499b7a715 (diff) | |
download | pleroma-7e65cad9fe91cf7c0c25e8f307358083b3c8f784.tar.gz |
Do recursive fetching in-band for now.
This is to prevent conversation id problems.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/ostatus/ostatus.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/ostatus/ostatus.ex b/lib/pleroma/web/ostatus/ostatus.ex index 2a107b6a6..e4448eb73 100644 --- a/lib/pleroma/web/ostatus/ostatus.ex +++ b/lib/pleroma/web/ostatus/ostatus.ex @@ -124,7 +124,7 @@ defmodule Pleroma.Web.OStatus do if !Object.get_cached_by_ap_id(inReplyTo) do inReplyToHref = string_from_xpath("//thr:in-reply-to[1]/@href", entry) if inReplyToHref do - Task.start(fn -> fetch_activity_from_html_url(inReplyToHref) end) + fetch_activity_from_html_url(inReplyToHref) end end |