aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2019-01-21 14:52:41 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2019-01-21 14:52:41 +0300
commita4d3fec8a71241d5c40fa76e33f15fa217154600 (patch)
tree1abf5087f57ac2880efb7cf32f726f05d29214e8 /lib
parent789a9843da0eef1e5426ab6558f1adf24231ce02 (diff)
downloadpleroma-a4d3fec8a71241d5c40fa76e33f15fa217154600.tar.gz
[#502] Code comments update.
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/activity_pub/activity_pub.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex
index 32c08c9d2..fd026a047 100644
--- a/lib/pleroma/web/activity_pub/activity_pub.ex
+++ b/lib/pleroma/web/activity_pub/activity_pub.ex
@@ -140,7 +140,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
additional
),
{:ok, activity} <- insert(create_data, local),
- # Changing note count prior to federation in order not to reload `actor` (potentially updated by federator)
+ # Changing note count prior to enqueuing federation task in order to avoid race conditions on updating user.info
{:ok, _actor} <- User.increase_note_count(actor),
:ok <- maybe_federate(activity) do
{:ok, activity}
@@ -289,7 +289,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
with {:ok, _} <- Object.delete(object),
{:ok, activity} <- insert(data, local),
- # Changing note count prior to federation in order not to reload `actor` (potentially updated by federator)
+ # Changing note count prior to enqueuing federation task in order to avoid race conditions on updating user.info
{:ok, _actor} <- User.decrease_note_count(user),
:ok <- maybe_federate(activity) do
{:ok, activity}