logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 2154f729b06becdfa65a1303d4a6a55d84bae1e7
parent: 312772df7c7495b58724ad380e870dd4e2acf2d2
Author: Roger Braun <roger@rogerbraun.net>
Date:   Thu, 11 May 2017 09:32:03 +0200

Don't fetch if we don't even have a inReplyTo.

Diffstat:

Mlib/pleroma/web/ostatus/ostatus.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/ostatus/ostatus.ex b/lib/pleroma/web/ostatus/ostatus.ex @@ -136,7 +136,7 @@ defmodule Pleroma.Web.OStatus do {:ok, actor} = find_make_or_update_user(author) inReplyTo = string_from_xpath("//thr:in-reply-to[1]/@ref", entry) - if !Object.get_cached_by_ap_id(inReplyTo) do + if inReplyTo && !Object.get_cached_by_ap_id(inReplyTo) do inReplyToHref = string_from_xpath("//thr:in-reply-to[1]/@href", entry) if inReplyToHref do fetch_activity_from_html_url(inReplyToHref)