forked from YokaiRick/akkoma
Merge branch 'replies-count' into 'develop'
Fix replies count for remote replies See merge request pleroma/pleroma!3541
This commit is contained in:
commit
df5359aa72
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ def handle(%{data: %{"type" => "Create"}} = activity, meta) 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue