logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: df5359aa728211e570c98a7bd30fa3f84629417f
parent d1510c98d732de0bf324382fd680566e3ce3e58f
Author: Alex Gleason <alex@alexgleason.me>
Date:   Sun, 19 Dec 2021 17:36:25 +0000

Merge branch 'replies-count' into 'develop'

Fix replies count for remote replies

See merge request pleroma/pleroma!3541

Diffstat:

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

diff --git a/lib/pleroma/web/activity_pub/side_effects.ex b/lib/pleroma/web/activity_pub/side_effects.ex @@ -200,7 +200,7 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do {:ok, notifications} = Notification.create_notifications(activity, do_send: false) {:ok, _user} = ActivityPub.increase_note_count_if_public(user, object) - if in_reply_to = object.data["inReplyTo"] && object.data["type"] != "Answer" do + if in_reply_to = object.data["type"] != "Answer" && object.data["inReplyTo"] do Object.increase_replies_count(in_reply_to) end