logo

pleroma

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

More debugging code.

Diffstat:

Mlib/pleroma/web/ostatus/ostatus.ex3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/lib/pleroma/web/ostatus/ostatus.ex b/lib/pleroma/web/ostatus/ostatus.ex @@ -81,13 +81,16 @@ defmodule Pleroma.Web.OStatus do end def get_or_try_fetching(entry) do + Logger.debug("Trying to fetch entry") with id when not is_nil(id) <- string_from_xpath("//activity:object[1]/id", entry), %Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id) do {:ok, activity} else _e -> + Logger.debug("Couldn't get, will try to fetch") with href when not is_nil(href) <- string_from_xpath("//activity:object[1]/link[@type=\"text/html\"]/@href", entry), {:ok, [favorited_activity]} <- fetch_activity_from_html_url(href) do {:ok, favorited_activity} + else e -> Logger.debug("Couldn't find href: #{inspect(e)}") end end end